This commit is contained in:
Lukeshan Thananchayan 2025-06-01 11:35:16 +01:00
parent 5e22cef64b
commit ec067773f4

View File

@ -49,7 +49,7 @@ const fieldLabels: Record<SortField, string> = { name: "Name", level: "Level" };
type RequestModalProps = {
open: boolean;
onClose: () => void;
requestingUserId: number;
requestingUserId: number | undefined;
scientist?: Scientist | null;
};
function RequestModal({ open, onClose, requestingUserId, scientist }: RequestModalProps) {