From 861218dbbc2986a9b0efc737720d87c9221d49ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ivar=20Conradi=20=C3=98sthus?= Date: Tue, 11 Jan 2022 12:55:26 +0100 Subject: [PATCH] fix: remove debug log state --- src/lib/db/access-store.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lib/db/access-store.ts b/src/lib/db/access-store.ts index fc1df27de7..af0d328e16 100644 --- a/src/lib/db/access-store.ts +++ b/src/lib/db/access-store.ts @@ -131,7 +131,6 @@ export class AccessStore implements IAccessStore { // Since the editor should have access to the default project, // we map the project to the project and environment specific // permissions that are connected to the editor role. - console.log('before', row); if ( row.role_id === EDITOR_ROLE_ID && row.type !== ROOT_PERMISSION_TYPE @@ -151,7 +150,6 @@ export class AccessStore implements IAccessStore { environment, permission: row.permission, }; - console.log('after:', result); return result; }