Skip to content

Commit f989c31

Browse files
committed
fix: remove ","
1 parent 6fc5faa commit f989c31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/main/java/to/bitkit/ui/screens/wallets/send/SendAmountScreen.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ private fun AmountInputHandler(
256256
}
257257

258258
PrimaryDisplay.FIAT -> {
259-
val convertedAmount = currencyVM.convertFiatToSats(input.toDoubleOrNull() ?: 0.0) ?: 0L
259+
val convertedAmount = currencyVM.convertFiatToSats(input.replace(",", "").toDoubleOrNull() ?: 0.0) ?: 0L
260260
convertedAmount.toString()
261261
}
262262
}

0 commit comments

Comments
 (0)