File tree Expand file tree Collapse file tree 3 files changed +6
-0
lines changed
apps/dashboard/src/app/(app)/(stripe)
checkout/[team_slug]/[sku]
manage-billing/[team_slug] Expand file tree Collapse file tree 3 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ import { redirect } from "next/navigation";
22import { StripeRedirectErrorPage } from "../../_components/StripeRedirectErrorPage" ;
33import { getPlanCancelUrl } from "../../utils/billing" ;
44
5+ export const dynamic = "force-dynamic" ;
6+
57export default async function CancelPlanPage ( props : {
68 params : Promise < {
79 team_id : string ;
Original file line number Diff line number Diff line change 77 getInvoicePaymentUrl ,
88} from "../../../utils/billing" ;
99
10+ export const dynamic = "force-dynamic" ;
11+
1012export default async function CheckoutPage ( props : {
1113 params : Promise < {
1214 team_slug : string ;
Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ import { redirect } from "next/navigation";
22import { StripeRedirectErrorPage } from "../../_components/StripeRedirectErrorPage" ;
33import { getBillingPortalUrl } from "../../utils/billing" ;
44
5+ export const dynamic = "force-dynamic" ;
6+
57export default async function ManageBillingPage ( props : {
68 params : Promise < {
79 team_slug : string ;
You can’t perform that action at this time.
0 commit comments