error fixes by gpt

This commit is contained in:
Phil Leon Kersting
2025-07-25 11:26:19 +02:00
parent 93d535dad9
commit e9e3343f26
7 changed files with 142 additions and 190 deletions

View File

@@ -0,0 +1,9 @@
import React from "react";
export const AuthContext = React.createContext<{
isAuthenticated: boolean;
setIsAuthenticated: (auth: boolean) => void;
}>({
isAuthenticated: false,
setIsAuthenticated: () => { },
});