diff --git a/apps/client/src/features/modals/sheets-modal/SheetsModal.tsx b/apps/client/src/features/modals/sheets-modal/SheetsModal.tsx index 84a646c34..caadb1ee6 100644 --- a/apps/client/src/features/modals/sheets-modal/SheetsModal.tsx +++ b/apps/client/src/features/modals/sheets-modal/SheetsModal.tsx @@ -45,7 +45,12 @@ export default function SheetsModal(props: SheetsModalProps) { const sheetid = useRef(null); const worksheet = useRef(null); - const handleClose = () => onClose(); + const handleClose = () => { + setRundown(null); + setProject(null); + setUserFields(null); + onClose(); + }; const handleClick = () => { fileInputRef.current?.click(); };