Skip to content

Commit

Permalink
fix: error message
Browse files Browse the repository at this point in the history
  • Loading branch information
reneaaron authored and pavanjoshi914 committed Feb 29, 2024
1 parent 58bda7c commit e5367e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/screens/LNURLWithdraw/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ function LNURLWithdraw() {
(e.response?.data as { reason?: string })?.reason || e.message;
toast.error(error);
} else if (e instanceof Error) {
toast.error(error);
toast.error(e.message);
}
} finally {
setLoadingConfirm(false);
Expand Down

0 comments on commit e5367e1

Please sign in to comment.