Skip to content

Commit

Permalink
fix: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
nick-bisonai committed Nov 8, 2023
1 parent e57c8a7 commit ee69c96
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cli/src/adapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,10 @@ export function hashHandler() {
.data
console.dir(adapterWithCorrectHash, { depth: null })
} catch (e) {
console.error('Adapter hash could not be computed. Reason:');
const errMsg = e?.response?.data?.message ? e.response.data.message : e.message;
console.error('Adapter hash could not be computed. Reason:')
const errMsg = e?.response?.data?.message ? e.response.data.message : e.message

console.error(errMsg);
console.error(errMsg)
}
}
return wrapper
Expand Down

0 comments on commit ee69c96

Please sign in to comment.