TP-63878 | Remove space in UPI Lite widget on home page (#10446)

This commit is contained in:
Ankit Yadav
2024-04-15 19:40:38 +05:30
committed by GitHub
parent eb2ddb355c
commit fbdcb7cffe

View File

@@ -227,7 +227,7 @@ constructor(
Gson().fromJson(liteAccountInfoString, UpiLiteActiveAccountInfo::class.java)
return if (liteAccountInfo.balance.isNotEmpty())
"$RUPEE_SYMBOL ${liteAccountInfo.balance.getFormattedAmountWithDecimal()}"
"$RUPEE_SYMBOL${liteAccountInfo.balance.getFormattedAmountWithDecimal()}"
else EMPTY
}
}