Skip to content

Commit

Permalink
fix: send balance ui
Browse files Browse the repository at this point in the history
  • Loading branch information
heisenberg-2077 committed Nov 28, 2024
1 parent d59275d commit c273f94
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion apps/mobile/src/screens/Send/Section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,13 @@ export function BalanceSection({ style }: RNViewProps) {
{!screenState.showGasReserved &&
(screenState.balanceError || screenState.balanceWarn) ? (
<Text style={[styles.issueText]}>
{screenState.balanceError || screenState.balanceWarn}
{screenState.balanceError ? (
<>
{screenState.balanceError}: {currentTokenBalance}
</>
) : screenState.balanceWarn ? (
<>{screenState.balanceWarn}</>
) : null}
</Text>
) : null}
</View>
Expand Down

0 comments on commit c273f94

Please sign in to comment.