Skip to content

Commit

Permalink
Fixes from code review
Browse files Browse the repository at this point in the history
Signed-off-by: Lucas ONeil <lucasoneil@gmail.com>
  • Loading branch information
loneil committed Mar 22, 2024
1 parent 1598152 commit ebbe208
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions load-agent/agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -272,12 +272,7 @@ const pingMediator = async (agent) => {
}

let deleteOobRecordById = async (agent, id) => {
try {
const resp = await agent.oob.deleteById(id);

} catch (error) {
process.stderr.write('ERROR'+ '\n' + error + '\n')
}
await agent.oob.deleteById(id);
};

let receiveInvitation = async (agent, invitationUrl) => {
Expand Down

0 comments on commit ebbe208

Please sign in to comment.