File tree Expand file tree Collapse file tree
apps/flipcash/features/cash/src/main/kotlin/com/flipcash/app/cash/internal Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -118,13 +118,9 @@ internal class CashScreenViewModel @Inject constructor(
118118 currency.code?.let { stateFlow.value.limits?.sendLimitFor(it) } ? : SendLimit .Zero
119119 val isOverLimit = amount > sendLimit.nextTransaction
120120 if (isOverLimit) {
121- val currencySymbol = currency.selected?.symbol ? : " $"
122121 BottomBarManager .showError(
123- resources.getString(R .string.error_title_giveLimitReached),
124- resources.getString(R .string.error_description_giveLimitReached)
125- .replaceParam(
126- " $currencySymbol${sendLimit.nextTransaction.toInt()} "
127- )
122+ resources.getString(R .string.error_title_sendLimitReached),
123+ resources.getString(R .string.error_description_sendLimitReached)
128124 )
129125 }
130126 isOverLimit
You can’t perform that action at this time.
0 commit comments