From ceef43269581bd693a72672e742c9a88a0716952 Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Fri, 22 Dec 2023 02:59:01 +0900 Subject: [PATCH] =?UTF-8?q?=EC=95=A0=EB=8B=88=EB=A9=94=EC=9D=B4=EC=85=98?= =?UTF-8?q?=20=EC=A0=9C=EA=B1=B0=20=EC=BD=94=EB=93=9C=20=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SodaLive/Sources/Live/LiveView.swift | 6 ------ 1 file changed, 6 deletions(-) diff --git a/SodaLive/Sources/Live/LiveView.swift b/SodaLive/Sources/Live/LiveView.swift index fbc7404..0767e95 100644 --- a/SodaLive/Sources/Live/LiveView.swift +++ b/SodaLive/Sources/Live/LiveView.swift @@ -29,7 +29,6 @@ struct LiveView: View { if viewModel.recommendLiveItems.count > 0 { SectionRecommendLiveView(items: viewModel.recommendLiveItems) .padding(.top, 13.3) - .animation(nil) } if viewModel.recommendChannelItems.count > 0 { @@ -39,7 +38,6 @@ struct LiveView: View { viewModel.recommendChannelItems, isFollowingList: $viewModel.isFollowingList ) - .animation(nil) } SectionLiveNowView( @@ -51,7 +49,6 @@ struct LiveView: View { AppState.shared.setAppStep(step: .createLive(timeSettingMode: .NOW, onSuccess: onCreateSuccess)) } ) - .animation(nil) if viewModel.eventBannerItems.count > 0 { SectionEventBannerView(items: viewModel.eventBannerItems) @@ -60,12 +57,10 @@ struct LiveView: View { height: viewModel.eventBannerItems.count > 0 ? screenSize().width * 300 / 1000 : 0, alignment: .center ) - .animation(nil) } if viewModel.communityPostItems.count > 0 { SectionCommunityPostView(items: viewModel.communityPostItems) - .animation(nil) } SectionLiveReservationView( @@ -79,7 +74,6 @@ struct LiveView: View { AppState.shared.setAppStep(step: .createLive(timeSettingMode: .RESERVATION, onSuccess: onCreateSuccess)) } ) - .animation(nil) } } .frame(width: geo.size.width, height: geo.size.height)