Compare commits

...

1 Commits

Author SHA1 Message Date
ncoelho
e021edbe31 fix: sats format 2026-05-12 18:06:28 +02:00

View File

@ -1088,7 +1088,7 @@ const TransactionStatus: React.FC = () => {
<CopyTextToClipboard
text={
calculatedFee !== null && calculatedFee !== undefined
? `${formatBalanceWithoutSuffix(calculatedFee, BitcoinUnit.SATS, false)} sats / ${satoshiToLocalCurrency(calculatedFee)}`
? `${formatBalanceWithoutSuffix(calculatedFee, BitcoinUnit.SATS, true)} sats / ${satoshiToLocalCurrency(calculatedFee)}`
: '-'
}
style={StyleSheet.flatten([styles.detailValue, stylesHook.detailValue])}