From af87faf9edc0362ce7c5502e6db1df3328769d09 Mon Sep 17 00:00:00 2001 From: adueck Date: Wed, 12 Oct 2022 23:54:32 +0500 Subject: [PATCH] mm --- account/src/routers/payment-router.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/account/src/routers/payment-router.ts b/account/src/routers/payment-router.ts index acdfc78..f4a3606 100644 --- a/account/src/routers/payment-router.ts +++ b/account/src/routers/payment-router.ts @@ -37,8 +37,9 @@ paymentRouter.post("/create-checkout-session", async (req, res, next) => { }, ], mode: 'subscription', - success_url: `/success`, - cancel_url: `/cancel`, + // TODO ADD URLS + success_url: `/`, + cancel_url: `/`, }); if (!session.url) { return next("error creating session url");