From 6a234291317fce323861f68184c6a4746db9a037 Mon Sep 17 00:00:00 2001 From: Hemant Vishwakarma Date: Thu, 23 Apr 2026 19:55:21 +0530 Subject: [PATCH] change card service again --- src/Redux/services/cards.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Redux/services/cards.service.ts b/src/Redux/services/cards.service.ts index 545d348..9e1ffdd 100644 --- a/src/Redux/services/cards.service.ts +++ b/src/Redux/services/cards.service.ts @@ -52,7 +52,7 @@ export const cardsApi = createApi({ confirmCardPayment: builder.mutation({ query: (payload: { id: string; checkoutSessionId: string }) => ({ - url: `/website/passes/${payload.id}/confirm-payment/${payload.checkoutSessionId}`, + url: `/website/passes/${payload.id}/${payload.checkoutSessionId}/confirm-payment/`, method: "POST", }), }),