fix(i18n): 전체 수량 표기를 통일한다

This commit is contained in:
Yu Sung
2026-08-14 14:16:54 +09:00
parent b011616175
commit 080f36e690
5 changed files with 11 additions and 36 deletions

View File

@@ -20,7 +20,7 @@ struct FollowCreatorView: View {
VStack(spacing: 0) {
DetailNavigationBar(title: I18n.Follow.followingListTitle)
HStack(spacing: 0) {
HStack(spacing: 4) {
Text(I18n.Follow.totalPrefix)
.appFont(size: 13.3, weight: .medium)
.foregroundColor(Color.grayee)
@@ -29,10 +29,6 @@ struct FollowCreatorView: View {
.appFont(size: 13.3, weight: .medium)
.foregroundColor(Color.mainRed3)
Text(I18n.Follow.personUnit)
.appFont(size: 13.3, weight: .medium)
.foregroundColor(Color.grayee)
Spacer()
}
.padding(.horizontal, 13.3)