From e4f465f7c98e34107a5038f7e4950f847e5eadea Mon Sep 17 00:00:00 2001 From: admtracksteel Date: Sun, 15 Mar 2026 15:30:54 -0300 Subject: [PATCH] fix: resolve AuthContext collision causing frontend crash --- src/client/context/AuthContextType.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/client/context/AuthContextType.ts b/src/client/context/AuthContextType.ts index 7529430..ec378eb 100644 --- a/src/client/context/AuthContextType.ts +++ b/src/client/context/AuthContextType.ts @@ -13,5 +13,3 @@ export interface AuthContextType { canEdit: () => boolean; refetchUser: () => Promise; } - -export const AuthContext = createContext(undefined);