fixed settings

This commit is contained in:
2025-10-20 02:30:40 +02:00
parent e80bb81b5d
commit ec28c061a0
11 changed files with 280 additions and 102 deletions

View File

@@ -16,7 +16,7 @@ interface AuthContextType {
refreshUser: () => void;
needsSetup: boolean;
checkSetupStatus: () => Promise<void>;
updateUser: (userData: Employee) => void; // Add this line
updateUser: (userData: Employee) => void;
}
const AuthContext = createContext<AuthContextType | undefined>(undefined);