()
| 60 | const AuthContext = createContext<AuthState>({ status: "loading" }); |
| 61 | |
| 62 | export const useAuth = () => useContext(AuthContext); |
| 63 | |
| 64 | /** The auth-hint cookie as an optimistic AuthState, or null when absent. */ |
| 65 | const hintState = (hint: AuthHint | null): AuthState | null => |
no outgoing calls
no test coverage detected