Skip to content

Commit

Permalink
fix: deploy new is_good_plan_v5
Browse files Browse the repository at this point in the history
  • Loading branch information
riderx committed Feb 25, 2024
1 parent b6f7425 commit 38bc592
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ export const checkKey = async (supabase: SupabaseClient<Database>, apikey: strin

export const isGoodPlan = async (supabase: SupabaseClient<Database>, userId: string): Promise<boolean> => {
const { data } = await supabase
.rpc('is_good_plan_v3', { userid: userId })
.rpc('is_good_plan_v5', { userid: userId })
.single()
return data || false
}
Expand Down

0 comments on commit 38bc592

Please sign in to comment.