From 06a7fb519b30c04102f7d540867741b0b21e53dd Mon Sep 17 00:00:00 2001 From: Arhan Ansari Date: Sun, 22 Sep 2024 17:44:02 +0530 Subject: [PATCH] Update firebaseFunctions.ts --- firebaseFunctions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firebaseFunctions.ts b/firebaseFunctions.ts index 2122f20..7a72c04 100644 --- a/firebaseFunctions.ts +++ b/firebaseFunctions.ts @@ -51,7 +51,7 @@ export const getUserData = async (email: string): Promise => { // Function to check if the user has exceeded their request limit export const checkUserPlanLimit = async (email: string): Promise => { const userData = await getUserData(email); - + console.log(userData) if (!userData) { console.warn(`No user data found for ${email}.`); return false;