Skip to content

Commit

Permalink
fix/QA-116: 9,999,999,999원 입력 시 오류 발생
Browse files Browse the repository at this point in the history
  • Loading branch information
jinukeu committed Feb 22, 2024
1 parent d97cd0c commit 8d4acb6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ fun EnvelopeHistoryItem(
)
Spacer(modifier = modifier.weight(1f))
Text(
text = money.toInt().toMoneyFormat() + stringResource(R.string.sent_envelope_card_money_won),
text = money.toMoneyFormat() + stringResource(R.string.sent_envelope_card_money_won),
style = SusuTheme.typography.title_xs,
color = if (type == EnvelopeType.SENT.name) Gray100 else Gray50,
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ fun SentHistoryItem(
)
Spacer(modifier = modifier.weight(1f))
Text(
text = money.toInt().toMoneyFormat() + stringResource(R.string.sent_envelope_card_money_won),
text = money.toMoneyFormat() + stringResource(R.string.sent_envelope_card_money_won),
style = SusuTheme.typography.title_xxs,
color = if (type == EnvelopeType.SENT.name) Gray100 else Gray50,
)
Expand Down

0 comments on commit 8d4acb6

Please sign in to comment.