Skip to content

Commit

Permalink
feat(bank-sdk): Skonto screen. Fix currency display
Browse files Browse the repository at this point in the history
PP-648
  • Loading branch information
ndubkov-distcotech committed Jul 23, 2024
1 parent 449aa3e commit 3b7b61d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -729,10 +729,10 @@ private fun FooterSection(
targetValue = discountValue.toFloat(), label = "discountAmount"
)
val totalPriceText =
"${currencyFormatterWithoutSymbol().format(animatedTotalAmount)} ${totalAmount.currencyCode}"
"${currencyFormatterWithoutSymbol().format(animatedTotalAmount).trim()} ${totalAmount.currencyCode}"

val savedAmountText =
"${currencyFormatterWithoutSymbol().format(animatedSavedAmount)} ${savedAmount.currencyCode}"
"${currencyFormatterWithoutSymbol().format(animatedSavedAmount).trim()} ${savedAmount.currencyCode}"

val discountLabelText = stringResource(
id = R.string.gbs_skonto_section_footer_label_discount,
Expand Down

0 comments on commit 3b7b61d

Please sign in to comment.