* Simplified AuthContext for token-based authentication * OAuth functionality has been removed since we migrated to token-based auth
| 6 | * OAuth functionality has been removed since we migrated to token-based auth |
| 7 | */ |
| 8 | interface AuthContextType { |
| 9 | // Empty for now - only provides basic auth context structure |
| 10 | // Token management is handled directly by individual components |
| 11 | } |
| 12 | |
| 13 | const AuthContext = createContext<AuthContextType | undefined>(undefined); |
| 14 |
nothing calls this directly
no outgoing calls
no test coverage detected