From 7362145c0ff999a8369dba1be8288899811c18fc Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sat, 27 Sep 2025 20:35:56 +0000 Subject: [PATCH] Remove unused import for achievement service cgen-0208996e560749ff97f5735e1e8eab14 --- client/contexts/AuthContext.tsx | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/client/contexts/AuthContext.tsx b/client/contexts/AuthContext.tsx index 95809dac..e1800bf7 100644 --- a/client/contexts/AuthContext.tsx +++ b/client/contexts/AuthContext.tsx @@ -3,11 +3,7 @@ import { User, Session } from "@supabase/supabase-js"; import { supabase } from "@/lib/supabase"; import { UserProfile } from "@/lib/database.types"; import { aethexToast } from "@/lib/aethex-toast"; -import { - aethexUserService, - aethexAchievementService, - type AethexUserProfile, -} from "@/lib/aethex-database-adapter"; +import { aethexUserService, type AethexUserProfile } from "@/lib/aethex-database-adapter"; interface AuthContextType { user: User | null;