From 8e1601076f5cd52331ea4dc270fda4d34b979f1f Mon Sep 17 00:00:00 2001 From: Till JS Date: Tue, 31 Mar 2026 18:32:03 +0200 Subject: [PATCH] fix(presi-web): export auth alias from auth store for existing imports Co-Authored-By: Claude Opus 4.6 --- apps/presi/apps/web/src/lib/stores/auth.svelte.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/presi/apps/web/src/lib/stores/auth.svelte.ts b/apps/presi/apps/web/src/lib/stores/auth.svelte.ts index d2b3f333a..af20cf225 100644 --- a/apps/presi/apps/web/src/lib/stores/auth.svelte.ts +++ b/apps/presi/apps/web/src/lib/stores/auth.svelte.ts @@ -7,3 +7,5 @@ import { createManaAuthStore } from '@manacore/shared-auth-stores'; export const authStore = createManaAuthStore({ devBackendPort: 3008, }); + +export const auth = authStore;