Skip to content

Commit

Permalink
Merge pull request #275 from zimmerman-team/feat/DX-2113
Browse files Browse the repository at this point in the history
feat: DX-2113 - Fix JSON File upload
  • Loading branch information
Psami-wondah authored Dec 10, 2024
2 parents 1cb1ee1 + 774a843 commit 0035df7
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ interface DropzoneProps {
export const DropZone = (props: DropzoneProps) => {
const ACCEPTED_FILES = {
"text/csv": [".csv"],
"application/json": [".json"],
"application/vnd.oasis.opendocument.spreadsheet": [".ods"],
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet": [
".xlsx",
],
Expand Down Expand Up @@ -85,7 +87,7 @@ export const DropZone = (props: DropzoneProps) => {
margin-top: 18px;
`}
>
Supports: XMl, XLSX, CSV
Supports: XML, XLSX, CSV, JSON, ODS
</p>
<p
css={`
Expand Down

0 comments on commit 0035df7

Please sign in to comment.