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 = { type RequestModalProps = {
open: boolean; open: boolean;
onClose: () => void; onClose: () => void;
requestingUserId: number; requestingUserId: number | undefined;
scientist?: Scientist | null; scientist?: Scientist | null;
}; };
function RequestModal({ open, onClose, requestingUserId, scientist }: RequestModalProps) { function RequestModal({ open, onClose, requestingUserId, scientist }: RequestModalProps) {