We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 494b18f commit 05ba897Copy full SHA for 05ba897
src/context/AuthContext.tsx
@@ -17,7 +17,7 @@ interface AuthProviderProps {
17
18
export const AuthProvider = ({ children }: AuthProviderProps) => {
19
const [auth, setAuth] = useState<{ isAuthenticated: boolean; token: string | null }>({
20
- isAuthenticated: false, //SET TO FALSE BEFORE PULL REQUEST
+ isAuthenticated: false,
21
token: null,
22
});
23
0 commit comments