Skip to content

Commit

Permalink
[WC] Fix error routing
Browse files Browse the repository at this point in the history
  • Loading branch information
S2kael committed Nov 14, 2024
1 parent b4fc953 commit 20931e1
Show file tree
Hide file tree
Showing 2 changed files with 175 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -217,8 +217,15 @@ const _TaskItem = ({ actionReloadPoint, className, openWidget, reloadTask, task
}
})
.catch((e) => {
const error = e as Error;

console.error('finishTask', e);
setTaskLoading(false);

notify({
message: error.message,
type: 'error'
});
});

if (!task.airlyftId) {
Expand Down
168 changes: 168 additions & 0 deletions patches/@walletconnect+utils+2.13.1.patch

Large diffs are not rendered by default.

0 comments on commit 20931e1

Please sign in to comment.