From 8c4c4ad9b3aa0f4f6f2ac2b05896204ee44c1512 Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Thu, 26 Dec 2024 15:56:56 +0700 Subject: [PATCH] QFIX: Github Auth (#7558) Signed-off-by: Andrey Sobolev --- plugins/task-resources/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/task-resources/src/index.ts b/plugins/task-resources/src/index.ts index 39b1a69811..537d2c9b46 100644 --- a/plugins/task-resources/src/index.ts +++ b/plugins/task-resources/src/index.ts @@ -367,7 +367,7 @@ export const joinedProjectsStore = writable() function fillStores (): void { const client = getClient() - if (client !== undefined) { + if (client !== undefined && getCurrentAccount() != null) { const query = createQuery(true) query.query(task.class.ProjectType, {}, (res) => { typeStore.set(toIdMap(res))