diff --git a/feature/sent/src/main/java/com/susu/feature/envelope/component/EnvelopeHistoryItem.kt b/feature/sent/src/main/java/com/susu/feature/envelope/component/EnvelopeHistoryItem.kt index 04c9b1ed..8006ea1b 100644 --- a/feature/sent/src/main/java/com/susu/feature/envelope/component/EnvelopeHistoryItem.kt +++ b/feature/sent/src/main/java/com/susu/feature/envelope/component/EnvelopeHistoryItem.kt @@ -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, ) diff --git a/feature/sent/src/main/java/com/susu/feature/sent/component/SentHistoryItem.kt b/feature/sent/src/main/java/com/susu/feature/sent/component/SentHistoryItem.kt index 938e05e6..b05627dd 100644 --- a/feature/sent/src/main/java/com/susu/feature/sent/component/SentHistoryItem.kt +++ b/feature/sent/src/main/java/com/susu/feature/sent/component/SentHistoryItem.kt @@ -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, )