| 7 | import { logger } from '@/lib/default-logger'; |
| 8 | |
| 9 | export interface UserContextValue { |
| 10 | user: User | null; |
| 11 | error: string | null; |
| 12 | isLoading: boolean; |
| 13 | checkSession?: () => Promise<void>; |
| 14 | } |
| 15 | |
| 16 | export const UserContext = React.createContext<UserContextValue | undefined>(undefined); |
| 17 |
nothing calls this directly
no outgoing calls
no test coverage detected