Browse Source

remove unnecessary spaces

pull/1303/head
Mitchell 3 years ago
committed by Thomas
parent
commit
c25235dde1
  1. 4
      apps/client/src/app/services/import-transactions.service.ts

4
apps/client/src/app/services/import-transactions.service.ts

@ -160,11 +160,11 @@ export class ImportTransactionsService {
try {
date = parse(item[key], 'dd/MM/yyyy', new Date()).toISOString();
} catch {}
try {
date = parseISO(item[key]).toISOString();
} catch {}
if (date) {
return date;
}

Loading…
Cancel
Save