| 5 | const ACCESS_TOKEN_KEY = 'access_token' |
| 6 | |
| 7 | interface AuthContextType { |
| 8 | isGuest: boolean |
| 9 | isLoggedIn: boolean |
| 10 | setGuestMode: (value: boolean) => void |
| 11 | logout: () => void |
| 12 | } |
| 13 | |
| 14 | const AuthContext = createContext<AuthContextType | undefined>(undefined) |
| 15 |
nothing calls this directly
no outgoing calls
no test coverage detected