fix: resolve AuthContext collision causing frontend crash

This commit is contained in:
2026-03-15 15:30:54 -03:00
parent 47f2f4c13f
commit e4f465f7c9

View File

@@ -13,5 +13,3 @@ export interface AuthContextType {
canEdit: () => boolean; canEdit: () => boolean;
refetchUser: () => Promise<void>; refetchUser: () => Promise<void>;
} }
export const AuthContext = createContext<AuthContextType | undefined>(undefined);