Remove debug console logs

This commit is contained in:
2024-10-05 10:18:59 +02:00
parent 3691a59666
commit 49c68e3f77
5 changed files with 7 additions and 19 deletions

View File

@@ -6,8 +6,6 @@ const FileSelectionContext = createContext();
export const FileSelectionProvider = ({ children }) => {
const { selectedFile, handleFileSelect } = useFileManagementContext();
console.log('FileSelectionProvider rendering', { selectedFile });
return (
<FileSelectionContext.Provider value={{ selectedFile, handleFileSelect }}>
{children}