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