1
0
Fork 0
mirror of synced 2024-08-23 05:51:29 +12:00

Fix tests.

This commit is contained in:
Sam Rose 2024-05-23 15:16:52 +01:00
parent 120f240f01
commit a6d2f82e7b
No known key found for this signature in database

View file

@ -57,5 +57,5 @@ export function isFormat(format: any): format is Format {
}
export function parseCsvExport<T>(value: string) {
return JSON.parse(value?.replace(/'/g, '"')) as T
return JSON.parse(value) as T
}