We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c3262d commit f418c6cCopy full SHA for f418c6c
1 file changed
app/(authenticated)/checkout/actions.ts
@@ -119,6 +119,7 @@ export async function checkoutDonation(): Promise<CheckoutResult> {
119
} = await supabase.auth.getUser();
120
if (!user) return { error: "Not authenticated" };
121
122
+ // This product can have a variable price, adjusted by Stripe Checkout
123
const donationProductId = process.env.STRIPE_DONATION_PRODUCT_ID;
124
if (!donationProductId) return { error: "Donation product not configured" };
125
0 commit comments