From cf5f798bb3260bafe8cfbb369cc8fa3a1f9b0a64 Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Wed, 12 Mar 2025 16:33:41 +0900 Subject: [PATCH] =?UTF-8?q?=EC=BD=98=ED=85=90=EC=B8=A0=20=EB=A9=94?= =?UTF-8?q?=EC=9D=B8=20=EB=AC=B4=EB=A3=8C=20=ED=83=AD=20-=20=EC=83=88?= =?UTF-8?q?=EB=A1=9C=EC=9A=B4=20=EB=AC=B4=EB=A3=8C=20=EC=BD=98=ED=85=90?= =?UTF-8?q?=EC=B8=A0=EC=97=90=20=EC=A0=84=EC=B2=B4=20=EC=B9=B4=ED=85=8C?= =?UTF-8?q?=EA=B3=A0=EB=A6=AC=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Content/Main/V2/Free/ContentMainTabFreeViewModel.swift | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/SodaLive/Sources/Content/Main/V2/Free/ContentMainTabFreeViewModel.swift b/SodaLive/Sources/Content/Main/V2/Free/ContentMainTabFreeViewModel.swift index ea90148..9b940db 100644 --- a/SodaLive/Sources/Content/Main/V2/Free/ContentMainTabFreeViewModel.swift +++ b/SodaLive/Sources/Content/Main/V2/Free/ContentMainTabFreeViewModel.swift @@ -46,11 +46,14 @@ final class ContentMainTabFreeViewModel: ObservableObject { self.bannerList = data.contentBannerList self.introduceCreator = data.introduceCreator self.recommendSeriesList = data.recommendSeriesList - self.themeList = data.themeList self.newFreeContentList = data.newFreeContentList self.creatorList = data.creatorList self.playCountRankContentList = data.playCountRankContentList self.curationList = data.curationList + + self.themeList.removeAll() + self.themeList.append("전체") + self.themeList.append(contentsOf: data.themeList) } else { if let message = decoded.message { self.errorMessage = message