all bugs removed

This commit is contained in:
2025-07-25 11:46:28 +02:00
parent e9e3343f26
commit fcb8af574c
6 changed files with 16 additions and 19 deletions

View File

@@ -5,5 +5,5 @@ export const AuthContext = React.createContext<{
setIsAuthenticated: (auth: boolean) => void;
}>({
isAuthenticated: false,
setIsAuthenticated: () => { },
setIsAuthenticated: () => {},
});