diff --git a/app/src/shared/constants.ts b/app/src/shared/constants.ts index 4172a70..192ad3d 100644 --- a/app/src/shared/constants.ts +++ b/app/src/shared/constants.ts @@ -11,7 +11,7 @@ export const BLOG_URL = 'https://docs.opensaas.sh/blog'; const isDevEnv = process.env.NODE_ENV !== 'production'; const customerPortalTestUrl = 'https://billing.stripe.com/p/login/test_4gw7vg40I7vt00wbII'; // TODO: find your test url at https://dashboard.stripe.com/test/settings/billing/portal -const customerPortalProdUrl = ''; // TODO: add before deploying to production +const customerPortalProdUrl = 'https://billing.stripe.com/p/login/3cs8A7ccg7JW5cQ5kk'; // TODO: add before deploying to production export const STRIPE_CUSTOMER_PORTAL_LINK = isDevEnv ? customerPortalTestUrl : customerPortalProdUrl;