diff --git a/src/utils/stripe.js b/src/utils/stripe.js index ec95a20..0f6bcea 100644 --- a/src/utils/stripe.js +++ b/src/utils/stripe.js @@ -97,7 +97,7 @@ export async function handleWebhook(body, signature) { await db.update(users).set({ subscribed_until: subscriptionEndDate, subscription_tier: "basic", - tokens: sql`${users.tokens} + 30`, + tokens: sql`${users.tokens} + 25`, trial_used: true }).where(eq(users.stripe_id, data.object.customer)); break;