Skip to content

Commit

Permalink
Fix insufficient balance showing on load (#185)
Browse files Browse the repository at this point in the history
  • Loading branch information
victorkirov authored Apr 11, 2024
1 parent 8e72606 commit 177644b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/app/screens/sendRune/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,9 @@ function SendRuneScreen() {
setTransaction(undefined);
setSummary(undefined);
} finally {
setIsLoading(false);
if (isActiveEffect) {
setIsLoading(false);
}
}
};
generateTxnAndSummary();
Expand Down

0 comments on commit 177644b

Please sign in to comment.