From a816fd2f33c524345154edb7f2acc521a363f3b1 Mon Sep 17 00:00:00 2001 From: Nils Streijffert Date: Thu, 4 Feb 2021 15:14:18 +0100 Subject: [PATCH] Update DatabaseKeyStore.ts --- plugins/auth-backend/src/identity/DatabaseKeyStore.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/auth-backend/src/identity/DatabaseKeyStore.ts b/plugins/auth-backend/src/identity/DatabaseKeyStore.ts index a41abffc7b..b789522122 100644 --- a/plugins/auth-backend/src/identity/DatabaseKeyStore.ts +++ b/plugins/auth-backend/src/identity/DatabaseKeyStore.ts @@ -27,7 +27,7 @@ const migrationsDir = resolvePackagePath( const TABLE = 'signing_keys'; type Row = { - created_at: Date; //row.created_at is a string after being returned from the database + created_at: Date; // row.created_at is a string after being returned from the database kid: string; key: string; };