code: nextjs,frontends,useresolveduser (2 files)

This commit is contained in:
2025-12-26 03:26:42 +00:00
parent 0cbabf3a6c
commit 265a09f9b4
2 changed files with 2 additions and 2 deletions

View File

@@ -2,7 +2,7 @@ import { useCallback } from 'react'
import { useRouter } from 'next/navigation'
import type { AppLevel } from '@/lib/level-types'
import { getLevelPath } from '@/lib/navigation/get-level-path'
import { useAuth } from '@/hooks/useAuth'
import { useAuth } from '../useAuth'
export interface LevelRouting {
onNavigate: (level: AppLevel) => void

View File

@@ -1,7 +1,7 @@
import { useEffect, useState } from 'react'
import { Database } from '@/lib/database'
import type { User } from '@/lib/level-types'
import { useAuth } from '@/hooks/useAuth'
import { useAuth } from '../useAuth'
export interface ResolvedUserState {
user: User | null