Skip to content

Commit 05ba897

Browse files
committed
Update AuthContext.tsx
1 parent 494b18f commit 05ba897

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/context/AuthContext.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ interface AuthProviderProps {
1717

1818
export const AuthProvider = ({ children }: AuthProviderProps) => {
1919
const [auth, setAuth] = useState<{ isAuthenticated: boolean; token: string | null }>({
20-
isAuthenticated: false, //SET TO FALSE BEFORE PULL REQUEST
20+
isAuthenticated: false,
2121
token: null,
2222
});
2323

0 commit comments

Comments
 (0)