fix mime type error

This commit is contained in:
Reece Browne 2025-08-14 19:48:05 +01:00
parent 5b6d82797e
commit b1fd8d9bea
3 changed files with 0 additions and 3 deletions

View File

@ -130,7 +130,6 @@ const FileManager: React.FC<FileManagerProps> = ({ selectedTool }) => {
onDrop={handleNewFileUpload} onDrop={handleNewFileUpload}
onDragEnter={() => setIsDragging(true)} onDragEnter={() => setIsDragging(true)}
onDragLeave={() => setIsDragging(false)} onDragLeave={() => setIsDragging(false)}
accept={["*/*"]}
multiple={true} multiple={true}
activateOnClick={false} activateOnClick={false}
style={{ style={{

View File

@ -664,7 +664,6 @@ const FileEditor = ({
return ( return (
<Dropzone <Dropzone
onDrop={handleFileUpload} onDrop={handleFileUpload}
accept={["*/*"]}
multiple={true} multiple={true}
maxSize={2 * 1024 * 1024 * 1024} maxSize={2 * 1024 * 1024 * 1024}
style={{ style={{

View File

@ -9,7 +9,6 @@ const HiddenFileInput: React.FC = () => {
ref={fileInputRef} ref={fileInputRef}
type="file" type="file"
multiple={true} multiple={true}
accept="*/*"
onChange={onFileInputChange} onChange={onFileInputChange}
style={{ display: 'none' }} style={{ display: 'none' }}
data-testid="file-input" data-testid="file-input"