diff --git a/packages/server/src/routes/index/stripe.ts b/packages/server/src/routes/index/stripe.ts index 61f83636f..03456cc00 100644 --- a/packages/server/src/routes/index/stripe.ts +++ b/packages/server/src/routes/index/stripe.ts @@ -407,6 +407,7 @@ const getHandlers: Record = { checkoutTest: async (_stripe: Stripe, _path: SubPath, _ctx: AppContext) => { const basicPrice = findPrice(stripeConfig().prices, { accountType: 1, period: PricePeriod.Monthly }); + const proPrice = findPrice(stripeConfig().prices, { accountType: 2, period: PricePeriod.Monthly }); return ` @@ -432,30 +433,36 @@ const getHandlers: Record = { - + + `;