Skip to content

Commit

Permalink
Merge pull request #38 from ArhanAnsari/ArhanAnsari-patch-1
Browse files Browse the repository at this point in the history
Update firebaseFunctions.ts
  • Loading branch information
ArhanAnsari authored Sep 22, 2024
2 parents fad45bc + 06a7fb5 commit 89592b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion firebaseFunctions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export const getUserData = async (email: string): Promise<UserData | null> => {
// Function to check if the user has exceeded their request limit
export const checkUserPlanLimit = async (email: string): Promise<boolean> => {
const userData = await getUserData(email);

console.log(userData)
if (!userData) {
console.warn(`No user data found for ${email}.`);
return false;
Expand Down

0 comments on commit 89592b3

Please sign in to comment.