ImportData: POST CSV directly instead of reading it

This commit is contained in:
Alex Gleason
2020-09-27 11:41:46 -05:00
parent 2d29d69f50
commit 1ebc679b8b
2 changed files with 14 additions and 26 deletions

View File

@@ -270,5 +270,5 @@ export const FileChooserCSV = props => (
);
FileChooserCSV.defaultProps = {
accept: ['.csv'],
accept: ['text/csv'],
};