From 3c6abd68de50816e3a57db1e0ae0a292193c6685 Mon Sep 17 00:00:00 2001 From: Lucas ONeil Date: Thu, 18 Jan 2024 09:21:22 -0800 Subject: [PATCH] correct param syntax for oob api call Signed-off-by: Lucas ONeil --- services/tenant-ui/frontend/src/store/connectionStore.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/services/tenant-ui/frontend/src/store/connectionStore.ts b/services/tenant-ui/frontend/src/store/connectionStore.ts index ce5e50a88..acd2eb9e8 100644 --- a/services/tenant-ui/frontend/src/store/connectionStore.ts +++ b/services/tenant-ui/frontend/src/store/connectionStore.ts @@ -107,7 +107,9 @@ export const useConnectionStore = defineStore('connection', () => { // need the await here since the returned invitationData is not one of our stored refs... await acapyApi .postHttp(API_PATH.OUT_OF_BAND_CREATE, payload, { - multi_use: multiUse, + params: { + multi_use: multiUse, + }, }) .then((res) => { console.log(res);