Skip to content

Commit

Permalink
feat: proper error handling (#3041)
Browse files Browse the repository at this point in the history
  • Loading branch information
pavanjoshi914 authored Feb 13, 2024
1 parent 8988604 commit c6e848e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/app/screens/LNURLChannel/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ function LNURLChannel() {
}
} catch (e) {
console.error(e);
if (e instanceof Error) toast.error(`Error: ${e.message}`);
} finally {
setLoadingConfirm(false);
}
Expand Down

0 comments on commit c6e848e

Please sign in to comment.