Skip to content

Commit b63cf69

Browse files
author
meow12
authored
fix(payments): kevin auth fix (#82)
Fixed kevin payments authentication
1 parent 472b234 commit b63cf69

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/components/payments.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ export async function createStripeTransaction({
152152
return response;
153153
}
154154

155-
export async function startKevinAuthentication({secretKey, bankId}) {
155+
export async function startKevinAuthentication({secretKey, accountId, bankId}) {
156156
const response = await server.loadJson(
157157
`${Config.apiUrl}${Endpoints.PROJECT.PAYMENTS.AUTHENTICATION.AUTHENTICATE_KEVIN}`,
158158
{
@@ -164,6 +164,7 @@ export async function startKevinAuthentication({secretKey, bankId}) {
164164
'Content-Type': 'application/json',
165165
},
166166
body: JSON.stringify({
167+
accountId,
167168
bankId,
168169
}),
169170
}

0 commit comments

Comments
 (0)