fix(creator-channel): 일본어 보기 모드 제목을 숨긴다

This commit is contained in:
Yu Sung
2026-08-14 19:36:34 +09:00
parent 36d6b3ece7
commit 702d82ebb1

View File

@@ -21,9 +21,11 @@ struct CreatorChannelCommunityViewModeBar: View {
Button(action: onTapToggle) {
HStack(spacing: SodaSpacing.s4) {
Text(viewModeTitle)
.appFont(size: 16, weight: .regular)
.foregroundColor(Color.gray400)
if LanguageHeaderProvider.current != "ja" {
Text(viewModeTitle)
.appFont(size: 16, weight: .regular)
.foregroundColor(Color.gray400)
}
Image(viewModeIconName)
.resizable()