From 702d82ebb1b23dc9d9ff6ee294837f81483cb890 Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Fri, 14 Aug 2026 19:36:34 +0900 Subject: [PATCH] =?UTF-8?q?fix(creator-channel):=20=EC=9D=BC=EB=B3=B8?= =?UTF-8?q?=EC=96=B4=20=EB=B3=B4=EA=B8=B0=20=EB=AA=A8=EB=93=9C=20=EC=A0=9C?= =?UTF-8?q?=EB=AA=A9=EC=9D=84=20=EC=88=A8=EA=B8=B4=EB=8B=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Components/CreatorChannelCommunityViewModeBar.swift | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/SodaLive/Sources/V2/CreatorChannel/Community/Components/CreatorChannelCommunityViewModeBar.swift b/SodaLive/Sources/V2/CreatorChannel/Community/Components/CreatorChannelCommunityViewModeBar.swift index 1a6b7bd6..4c0d57f8 100644 --- a/SodaLive/Sources/V2/CreatorChannel/Community/Components/CreatorChannelCommunityViewModeBar.swift +++ b/SodaLive/Sources/V2/CreatorChannel/Community/Components/CreatorChannelCommunityViewModeBar.swift @@ -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()