From 94e50e1cc2efa118f130cc70318191ff4a7cb3bb Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Sun, 18 Jan 2026 14:52:35 +0000 Subject: [PATCH] use app url --- stripe_to_invoice/app/api/stripe/callback/route.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stripe_to_invoice/app/api/stripe/callback/route.ts b/stripe_to_invoice/app/api/stripe/callback/route.ts index 443eaac..d4f6d79 100644 --- a/stripe_to_invoice/app/api/stripe/callback/route.ts +++ b/stripe_to_invoice/app/api/stripe/callback/route.ts @@ -83,6 +83,6 @@ export async function GET(req: NextRequest) { // MVP success redirect return NextResponse.redirect( - new URL("/connect/stripe/success", process.env.NEXT_PUBLIC_BASE_URL) + new URL("/connect/stripe/success", process.env.APP_URL) ); }