Fix prettier formatting

This commit is contained in:
Nils Streijffert
2021-02-04 17:55:00 +01:00
parent b3b90acee7
commit f6e56e6cfb
@@ -66,12 +66,9 @@ export class DatabaseKeyStore implements KeyStore {
return {
items: rows.map(row => ({
key: JSON.parse(row.key),
createdAt: DateTime.fromSQL(
(row.created_at as unknown) as string,
{
zone: 'UTC',
},
),
createdAt: DateTime.fromSQL((row.created_at as unknown) as string, {
zone: 'UTC',
}),
})),
};
}