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");