Skip to content

Commit

Permalink
chore: error message in TrezorManager
Browse files Browse the repository at this point in the history
  • Loading branch information
heisenberg-2077 committed Dec 13, 2024
1 parent 356ed60 commit 0d30445
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ui/views/HDManager/TrezorManager.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ export const TrezorManager: React.FC<Props> = ({ HDName = 'Trezor' }) => {
sleep(1000).then(fetchCurrentAccountsRetry.retry);
} else {
setPreventLoading(true);
console.log(errMessage);
Sentry.captureException(fetchCurrentAccountsRetry.error);
console.error(fetchCurrentAccountsRetry.error);
Sentry.captureException(`TrezorManager: ${errMessage}`);

modal.error({
content: t('page.newAddress.hd.trezor.message.disconnected', [HDName]),
Expand Down

0 comments on commit 0d30445

Please sign in to comment.