Skip to content

Commit

Permalink
🔧 Update import paths in OnAuthStateChange.svelte
Browse files Browse the repository at this point in the history
  • Loading branch information
usagizmo committed Jun 17, 2024
1 parent 214983c commit dbac650
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions apps/web/src/lib/features/user/OnAuthStateChange.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@
import type { AuthSession } from '@supabase/supabase-js';
import { onMount } from 'svelte';
import { getUser } from '$lib/features/user/userRequests';
import { userStore } from '$lib/features/user/userStore.svelte';
import { supabase } from '$lib/supabase';
import { getUser } from './userRequests';
import { userStore } from './userStore.svelte';
let session = $state<AuthSession | null>(null);
$effect(() => {
Expand Down

0 comments on commit dbac650

Please sign in to comment.