fix: set stripe price id to env variable

This commit is contained in:
Henry
2025-05-29 21:41:08 +01:00
parent 6a8ff0dc71
commit 9d467529e1
2 changed files with 2 additions and 1 deletions

View File

@@ -69,7 +69,7 @@ export default async function handler(
mode: "subscription",
line_items: [
{
price: "price_1QcpmyDlDJBL8JHbeqhe1Ruq",
price: process.env.STRIPE_PRO_PLAN_PRICE_ID,
quantity: 1,
},
],