Merge pull request #13575 from vvlladd28/improvement/csv-expor/mime-type

Change mime type for csv export file
This commit is contained in:
Vladyslav Prykhodko 2025-06-13 13:08:47 +03:00 committed by GitHub
commit c2d28528c9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -160,7 +160,7 @@ export const ZIP_TYPE: FileType = {
}; };
export const CSV_TYPE: FileType = { export const CSV_TYPE: FileType = {
mimeType: 'attachament/csv', mimeType: 'text/csv',
extension: 'csv' extension: 'csv'
}; };