Untitled
Anonymous
plain_text
03/29/2024 9:02 AM
644 B
17
Indexable
useEffect(() => {
const handleBeforeUnload = (e) => {
console.log('Attempting to navigate away during upload'); // Debugging line
if (isUploading) {
const message = 'An upload is in progress. Are you sure you want to leave?';
e.returnValue = message;
return message;
}
};
window.addEventListener('beforeunload', handleBeforeUnload);
return () => window.removeEventListener('beforeunload', handleBeforeUnload);
}, [isUploading]);Editor is loading...
Leave a Comment