Skip to content

Commit

Permalink
Merge pull request #989 from bcgov/bugfix/oobMultiUse
Browse files Browse the repository at this point in the history
Fix OOB Invitation API call with multi-use
  • Loading branch information
loneil authored Jan 18, 2024
2 parents ea66495 + 3c6abd6 commit b281b49
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 b281b49

Please sign in to comment.