Skip to content

Commit

Permalink
[chore] #188 웹뷰 visible setState 값 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
t1nm1ksun committed Aug 16, 2024
1 parent 21ea276 commit d1d052b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class CourseDetailViewModel @Inject constructor(
is CourseDetailContract.CourseDetailEvent.DeleteCourse -> setState { copy(loadState = event.loadState, deleteLoadState = event.deleteLoadState) }
is CourseDetailContract.CourseDetailEvent.PostUsePoint -> setState { copy(usePointLoadState = usePointLoadState) }
is CourseDetailContract.CourseDetailEvent.OnReportWebViewClick -> setState { copy(isWebViewOpened = true) }
is CourseDetailContract.CourseDetailEvent.WebViewClose -> setState { copy(isWebViewOpened = true) }
is CourseDetailContract.CourseDetailEvent.WebViewClose -> setState { copy(isWebViewOpened = false) }
}
}

Expand Down

0 comments on commit d1d052b

Please sign in to comment.