Skip to content

Commit

Permalink
wip(amount): fix space formatting of btc value
Browse files Browse the repository at this point in the history
  • Loading branch information
theborakompanioni committed Dec 15, 2023
1 parent 128b1d4 commit 3be0841
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Send/AmountInputField.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ const formatBtcDisplayValue = (sats: Api.AmountSats) => {
return `${'\u20BF'} ${
formattedBtc.substring(0, pointIndex + 3) +
' ' +
formattedBtc.substring(pointIndex + 3, pointIndex + 5) +
formattedBtc.substring(pointIndex + 3, pointIndex + 6) +
' ' +
formattedBtc.substring(pointIndex + 5)
formattedBtc.substring(pointIndex + 6)
}`
}

Expand Down

0 comments on commit 3be0841

Please sign in to comment.