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", }), }),