From 49d06ba61306c5cf463970dfe5a6a3c85e71977f Mon Sep 17 00:00:00 2001 From: Ankan Saha Date: Mon, 27 Jul 2026 14:14:35 +0530 Subject: [PATCH] chore: remove unnecessary blank line in AuthContext.tsx for cleaner code --- client/src/contexts/AuthContext.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/client/src/contexts/AuthContext.tsx b/client/src/contexts/AuthContext.tsx index 69c131f..fd9fc3f 100644 --- a/client/src/contexts/AuthContext.tsx +++ b/client/src/contexts/AuthContext.tsx @@ -14,7 +14,6 @@ interface AuthContextType { refreshUser: () => Promise; } - const AuthContext = createContext(undefined); export function AuthProvider({ children }: { children: ReactNode }) {