Here is a bug I have shipped more than once.

You have an export that turns records into CSV. The column list is just strings:

import Papa from 'papaparse';

Papa.unparse(users, { columns: ['id', 'name', 'email'] }); // columns are plain strings

Enter fullscreen mode