From 517fafa118c17843ac6f6e07662605c311ff408e Mon Sep 17 00:00:00 2001 From: meow12 Date: Fri, 22 Apr 2022 11:22:14 +0300 Subject: [PATCH] fix(payments): kevin auth fix Fixed kevin payments authentication --- src/components/payments.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/payments.js b/src/components/payments.js index f6ccb48..df897c7 100644 --- a/src/components/payments.js +++ b/src/components/payments.js @@ -152,7 +152,7 @@ export async function createStripeTransaction({ return response; } -export async function startKevinAuthentication({secretKey, bankId}) { +export async function startKevinAuthentication({secretKey, accountId, bankId}) { const response = await server.loadJson( `${Config.apiUrl}${Endpoints.PROJECT.PAYMENTS.AUTHENTICATION.AUTHENTICATE_KEVIN}`, { @@ -164,6 +164,7 @@ export async function startKevinAuthentication({secretKey, bankId}) { 'Content-Type': 'application/json', }, body: JSON.stringify({ + accountId, bankId, }), }