From db2078e7383b34f96c4905b056d5d8a67fc4f92c Mon Sep 17 00:00:00 2001 From: Arman Date: Mon, 12 Sep 2022 18:15:50 +0200 Subject: [PATCH] fix: wrongly named store --- .../project-[project]/authentication/teams/[team]/store.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/console/project-[project]/authentication/teams/[team]/store.ts b/src/routes/console/project-[project]/authentication/teams/[team]/store.ts index 0a830f5a4..a90f90d4c 100644 --- a/src/routes/console/project-[project]/authentication/teams/[team]/store.ts +++ b/src/routes/console/project-[project]/authentication/teams/[team]/store.ts @@ -2,7 +2,7 @@ import { sdkForProject } from '$lib/stores/sdk'; import type { Models } from '@aw-labs/appwrite-console'; import { cachedStore } from '$lib/helpers/cache'; -export const user = cachedStore< +export const team = cachedStore< Models.Team, { load: (teamId: string) => Promise;