From 631616620ce6485b54c6a4e209caed0dc45618a3 Mon Sep 17 00:00:00 2001 From: msukkari Date: Wed, 26 Feb 2025 17:37:36 -0800 Subject: [PATCH] fix skipping onboard complete check --- packages/web/src/actions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/web/src/actions.ts b/packages/web/src/actions.ts index 9f764e8d..6c8fb199 100644 --- a/packages/web/src/actions.ts +++ b/packages/web/src/actions.ts @@ -1246,7 +1246,7 @@ const _fetchSubscriptionForOrg = async (orgId: number, prisma: Prisma.Transactio } if (!org.stripeCustomerId) { - return null; + return notFound(); } const stripe = getStripe();