From b4f1c48293dbd9b41da6fb95a3f2f2946223b608 Mon Sep 17 00:00:00 2001 From: "pramod.mahajan" Date: Sat, 25 Oct 2025 10:27:21 +0530 Subject: [PATCH] removed debugger --- src/hooks/useAuth.jsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/hooks/useAuth.jsx b/src/hooks/useAuth.jsx index ded67e13..e5a9a0d3 100644 --- a/src/hooks/useAuth.jsx +++ b/src/hooks/useAuth.jsx @@ -36,7 +36,6 @@ export const useSubscription = (frequency) => { return useQuery({ queryKey: ["subscriptionPlans", frequency], queryFn: async () => { - debugger const resp = await AuthRepository.getSubscription(frequency); return resp.data; },