diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/live/room/menu/LiveRoomMenuService.kt b/src/main/kotlin/kr/co/vividnext/sodalive/live/room/menu/LiveRoomMenuService.kt index f6ab126..e27c78a 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/live/room/menu/LiveRoomMenuService.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/live/room/menu/LiveRoomMenuService.kt @@ -69,10 +69,6 @@ class LiveRoomMenuService( fun getLiveMenu(creatorId: Long): GetMenuResponse? { val menuList = repository.findByCreatorId(creatorId = creatorId) - if (menuList.isEmpty()) { - throw SodaException("설정된 메뉴판이 없습니다.") - } - var activeMenu: LiveRoomMenu? = null for (menu in menuList) { if (menu.isActive) {