Skip to content

Commit

Permalink
fix: improve tx send error handling
Browse files Browse the repository at this point in the history
  • Loading branch information
siandreev committed Dec 13, 2024
1 parent 47d3b26 commit ac4f2df
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/web-swap-widget/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tonkeeper/web-swap-widget",
"version": "3.0.2",
"version": "3.0.3",
"author": "Ton APPS UK Limited <[email protected]>",
"description": "Web swap widget for Tonkeeper",
"dependencies": {
Expand Down
3 changes: 2 additions & 1 deletion apps/web-swap-widget/src/components/SwapWidgetPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,9 @@ export const SwapWidgetPage = () => {
} else if (e && typeof e === 'string') {
notifyError(e);
}
} finally {
setHasBeenSent(false);
}
setHasBeenSent(false);
};

const onChangeFields = () => {
Expand Down

0 comments on commit ac4f2df

Please sign in to comment.