From 3520f9f181cda359716a7d66b9c010fe49e483f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B5=D0=BD=D0=B8=D1=81=20=D0=9A=D0=B0=D1=82=D0=B0?= =?UTF-8?q?=D0=B5=D0=B2?= Date: Tue, 23 Jan 2024 18:27:22 +0000 Subject: [PATCH] fix: payment status --- src/components/PaymentPage/methods/Stripe/CheckoutForm.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/PaymentPage/methods/Stripe/CheckoutForm.tsx b/src/components/PaymentPage/methods/Stripe/CheckoutForm.tsx index d5d8ceb..637ff8f 100644 --- a/src/components/PaymentPage/methods/Stripe/CheckoutForm.tsx +++ b/src/components/PaymentPage/methods/Stripe/CheckoutForm.tsx @@ -42,7 +42,7 @@ export default function CheckoutForm({ const { error } = await stripe.confirmPayment({ elements, confirmParams: { - return_url: `https://${window.location.host}/payment/result/${subscriptionReceiptId}`, + return_url: `https://${window.location.host}/payment/result/${subscriptionReceiptId}/`, }, }); if (error) {