From 3be084178997022ec28202ce60034dd80ddb7335 Mon Sep 17 00:00:00 2001 From: theborakompanioni Date: Fri, 15 Dec 2023 17:45:08 +0100 Subject: [PATCH] wip(amount): fix space formatting of btc value --- src/components/Send/AmountInputField.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Send/AmountInputField.tsx b/src/components/Send/AmountInputField.tsx index 1a7a46a9..eb84bd7b 100644 --- a/src/components/Send/AmountInputField.tsx +++ b/src/components/Send/AmountInputField.tsx @@ -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) }` }