diff --git a/SodaLive/Sources/Live/LiveView.swift b/SodaLive/Sources/Live/LiveView.swift index 5c9416b..3eebc5e 100644 --- a/SodaLive/Sources/Live/LiveView.swift +++ b/SodaLive/Sources/Live/LiveView.swift @@ -31,20 +31,6 @@ struct LiveView: View { .padding(.top, 13.3) } - if let url = URL(string: "https://blog.naver.com/sodalive_official"), - UIApplication.shared.canOpenURL(url) { - Image("img_how_to_use") - .resizable() - .frame( - width: screenSize().width, - height: (200 * screenSize().width) / 1080 - ) - .padding(.top, 21.3) - .onTapGesture { - UIApplication.shared.open(url) - } - } - if viewModel.recommendChannelItems.count > 0 { SectionRecommendChannelView( items: viewModel.isFollowingList ? diff --git a/SodaLive/Sources/MyPage/MyPageView.swift b/SodaLive/Sources/MyPage/MyPageView.swift index 7fb00dc..005ccc8 100644 --- a/SodaLive/Sources/MyPage/MyPageView.swift +++ b/SodaLive/Sources/MyPage/MyPageView.swift @@ -100,11 +100,25 @@ struct MyPageView: View { if !data.isAuth { AuthButtonView() - .padding(.vertical, 40) + .padding(.top, 40) .onTapGesture { viewModel.isShowAuthView = true } } + + if let url = URL(string: "https://blog.naver.com/sodalive_official"), + UIApplication.shared.canOpenURL(url) { + Image("img_how_to_use") + .resizable() + .frame( + width: screenSize().width, + height: (200 * screenSize().width) / 1080 + ) + .padding(.top, 40) + .onTapGesture { + UIApplication.shared.open(url) + } + } } } }