Downloading/Opening .csv file using Google chrome, it changes extension of .csv file to .xls Downloading/Opening .csv file using Google chrome, it changes extension of .csv file to .xls google-chrome google-chrome

Downloading/Opening .csv file using Google chrome, it changes extension of .csv file to .xls


I didn't find any solution for it so I have made a work around:

      if (fileType === 'text/csv') {        FileSaver.saveAs(newBlob, `${data}.csv`);      } else {        FileSaver.saveAs(newBlob, `${data}`);      }

This is working for me, if you find that browser makes the same issue for any other file and this file is not csv, try to implement it like this and it will also work.