We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 850c001 commit 9b56235Copy full SHA for 9b56235
1 file changed
services/opencode/src/main/kotlin/com/getcode/opencode/model/financial/Fiat.kt
@@ -69,7 +69,6 @@ data class Fiat(
69
fun formatted(
70
formatting: Formatting = Formatting.None,
71
showPrefix: Boolean = true,
72
- suffix: String? = null,
73
includeCommas: Boolean = true,
74
): String {
75
val shouldTruncate = if (formatting is Formatting.Truncated) {
@@ -103,8 +102,6 @@ data class Fiat(
103
102
104
positivePrefix = prefix
105
negativePrefix = prefix
106
- positiveSuffix = suffix?.prependIndent(" ").orEmpty()
107
- negativeSuffix = suffix?.prependIndent(" ").orEmpty()
108
isGroupingUsed = includeCommas
109
}
110
0 commit comments