Store dates as ISO string

UTC string has a comma in it, so it messes up
CSV exports.
This commit is contained in:
Brandon Presley 2022-07-08 18:02:10 +12:00
parent 70113f1b94
commit 025296d24b
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ export default function EditSet({
newSet.name,
newSet.reps,
newSet.weight,
new Date().toUTCString(),
new Date().toISOString(),
newSet.unit || 'kg',
],
);