Skip to content

Commit 3833730

Browse files
committed
chore: remove missed suffix removal
Signed-off-by: Brandon McAnsh <git@bmcreations.dev>
1 parent 520bb89 commit 3833730

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • apps/flipcash/core/src/main/kotlin/com/flipcash/app/core/money

apps/flipcash/core/src/main/kotlin/com/flipcash/app/core/money/FormatUtils.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,6 @@ fun Int.withCommas(): String {
4040
return this.toString().reversed().chunked(3).joinToString(",").reversed()
4141
}
4242

43-
fun LocalFiat.formatted(formatting: Fiat.Formatting = Fiat.Formatting.None, suffix: String? = null): String {
44-
return nativeAmount.formatted(formatting = formatting, suffix = suffix)
43+
fun LocalFiat.formatted(formatting: Fiat.Formatting = Fiat.Formatting.None): String {
44+
return nativeAmount.formatted(formatting = formatting)
4545
}

0 commit comments

Comments
 (0)