feat(home): 현재 라이브 섹션을 연결한다

This commit is contained in:
Yu Sung
2026-06-29 13:22:00 +09:00
parent e67efeb30f
commit c441fb0b02
8 changed files with 191 additions and 38 deletions

View File

@@ -440,7 +440,13 @@ struct MainView: View {
private func handleRecommendationLiveTap(roomId: Int) {
guard roomId > 0 else { return }
performRecommendationDetailAction {
openLiveDetail(roomId: roomId)
handleExternalNavigationRequest(
value: roomId,
navigationAction: {
liveViewModel.enterLiveRoom(roomId: roomId)
},
cancelAction: {}
)
}
}