mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-08-26 14:19:24 +00:00
typescript fix for mime types
This commit is contained in:
parent
9a1c8958f3
commit
72afa6a1e5
@ -130,7 +130,7 @@ const FileManager: React.FC<FileManagerProps> = ({ selectedTool }) => {
|
||||
onDrop={handleNewFileUpload}
|
||||
onDragEnter={() => setIsDragging(true)}
|
||||
onDragLeave={() => setIsDragging(false)}
|
||||
accept="*/*"
|
||||
accept={["*/*"] as any}
|
||||
multiple={true}
|
||||
activateOnClick={false}
|
||||
style={{
|
||||
|
@ -33,7 +33,7 @@ const LandingPage = () => {
|
||||
{/* White PDF Page Background */}
|
||||
<Dropzone
|
||||
onDrop={handleFileDrop}
|
||||
accept="*/*"
|
||||
accept={["*/*"] as any}
|
||||
multiple={true}
|
||||
className="w-4/5 flex items-center justify-center h-[95vh]"
|
||||
style={{
|
||||
|
Loading…
x
Reference in New Issue
Block a user