Skip to content

Commit 57821a7

Browse files
committed
updated accepted file type
1 parent 5b8f63d commit 57821a7

File tree

1 file changed

+1
-4
lines changed
  • packages/frontend/src/components/DragDropInput

1 file changed

+1
-4
lines changed

packages/frontend/src/components/DragDropInput/index.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -132,10 +132,7 @@ function DragDropInput(props: DragDropInputProps) {
132132
: placeholder ?? 'Enter or drop your file here'
133133
}
134134
/>
135-
<FileUpload
136-
accept={['text/plain', 'image/png'].join(',')}
137-
processFile={processFile}
138-
/>
135+
<FileUpload accept="text/plain" processFile={processFile} />
139136
</Stack>
140137
{error && <FormErrorMessage>{error?.message}</FormErrorMessage>}
141138
</FormControl>

0 commit comments

Comments
 (0)