Skip to content

Commit

Permalink
correct param syntax for oob api call
Browse files Browse the repository at this point in the history
Signed-off-by: Lucas ONeil <[email protected]>
  • Loading branch information
loneil committed Jan 18, 2024
1 parent ea66495 commit 3c6abd6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion services/tenant-ui/frontend/src/store/connectionStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 3c6abd6

Please sign in to comment.