diff --git a/SodaLive/Sources/Live/Room/LiveRoomViewModel.swift b/SodaLive/Sources/Live/Room/LiveRoomViewModel.swift index 07dfd22..ba77ac6 100644 --- a/SodaLive/Sources/Live/Room/LiveRoomViewModel.swift +++ b/SodaLive/Sources/Live/Room/LiveRoomViewModel.swift @@ -821,8 +821,6 @@ final class LiveRoomViewModel: NSObject, ObservableObject { ) self.agora.sendRawMessageToGroup(rawMessage: editRoomInfoMessage) - self.errorMessage = "라이브 정보가 수정되었습니다." - self.isShowErrorPopup = true } else { self.errorMessage = decoded.message ?? "라이브 정보를 수정하지 못했습니다.\n다시 시도해 주세요." self.isShowErrorPopup = true diff --git a/SodaLive/Sources/Main/Home/HomeView.swift b/SodaLive/Sources/Main/Home/HomeView.swift index 10c7c8c..1b610d9 100644 --- a/SodaLive/Sources/Main/Home/HomeView.swift +++ b/SodaLive/Sources/Main/Home/HomeView.swift @@ -178,10 +178,6 @@ struct HomeView: View { } } - if appState.isShowPlayer { - LiveRoomViewV2() - } - if appState.isShowNotificationSettingsDialog { NotificationSettingsDialog() } @@ -229,6 +225,10 @@ struct HomeView: View { if isShowPlayer { ContentPlayerView(isShowing: $isShowPlayer, playlist: []) } + + if appState.isShowPlayer { + LiveRoomViewV2() + } } .edgesIgnoringSafeArea(.bottom) .valueChanged(value: appState.pushRoomId) { value in