We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b8f63d commit 57821a7Copy full SHA for 57821a7
packages/frontend/src/components/DragDropInput/index.tsx
@@ -132,10 +132,7 @@ function DragDropInput(props: DragDropInputProps) {
132
: placeholder ?? 'Enter or drop your file here'
133
}
134
/>
135
- <FileUpload
136
- accept={['text/plain', 'image/png'].join(',')}
137
- processFile={processFile}
138
- />
+ <FileUpload accept="text/plain" processFile={processFile} />
139
</Stack>
140
{error && <FormErrorMessage>{error?.message}</FormErrorMessage>}
141
</FormControl>
0 commit comments