From b75c931393a33224fc541d6b5b2bb98a365f292e Mon Sep 17 00:00:00 2001 From: pradeepkumar Date: Sat, 7 Mar 2026 10:11:05 +0530 Subject: [PATCH] feat: Add fallback default for `stripePriceId` in seed data. --- prisma/seed.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prisma/seed.ts b/prisma/seed.ts index 4ac9bac..108f245 100644 --- a/prisma/seed.ts +++ b/prisma/seed.ts @@ -1542,7 +1542,7 @@ async function main() { { name: 'Professional Annual', description: 'Full access to all agent features', - stripePriceId: process.env.STRIPE_PRICE_ID, + stripePriceId: process.env.STRIPE_PRICE_ID || 'price_not_configured', amount: 49900, currency: 'usd', interval: 'year',