Merge pull request #75 from mendableai/nsc/free-credits-increase

Free credits increase
This commit is contained in:
Nicolas 2024-04-26 10:27:00 -07:00 committed by GitHub
commit 26f75a59c3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
import { withAuth } from "../../lib/withAuth";
import { supabase_service } from "../supabase";
const FREE_CREDITS = 100;
const FREE_CREDITS = 300;
export async function billTeam(team_id: string, credits: number) {
return withAuth(supaBillTeam)(team_id, credits);