Skip to content

Commit

Permalink
Merge branch 'main' into renameToCheck
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgeGoodall authored May 30, 2024
2 parents 77aa297 + 5f9713d commit 9f58504
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/utils/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,13 +85,13 @@ export const finishedProcessingStatuses = [
]

export const allowedFileTypes = {
csv: ['text/csv', 'text/plain'],
xls: ['application/vnd.ms-excel'],
xlsx: ['application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'],
json: ['application/json'],
geojson: ['application/vnd.geo+json'],
gml: ['application/gml+xml'],
gpkg: ['application/gpkg'],
sqlite: ['application/geopackage+sqlite3'],
zip: ['application/zip']
csv: ['text/csv', 'text/plain', 'application/octet-stream'],
xls: ['application/vnd.ms-excel', 'application/octet-stream'],
xlsx: ['application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'application/octet-stream'],
json: ['application/json', 'application/octet-stream'],
geojson: ['application/vnd.geo+json', 'application/octet-stream'],
gml: ['application/gml+xml', 'application/octet-stream'],
gpkg: ['application/gpkg', 'application/octet-stream'],
sqlite: ['application/geopackage+sqlite3', 'application/octet-stream'],
zip: ['application/zip', 'application/octet-stream']
}

0 comments on commit 9f58504

Please sign in to comment.