Skip to content

Commit

Permalink
chore/#131: ktlint
Browse files Browse the repository at this point in the history
  • Loading branch information
jinukeu committed Feb 9, 2024
1 parent e523e7a commit 111469c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ class LectureEvaluationViewModel @Inject constructor(
}

fun updateAlignItem(position: Int) = intent {

reduce {
state.copy(
selectedAlignPosition = position,
Expand Down Expand Up @@ -141,7 +140,6 @@ class LectureEvaluationViewModel @Inject constructor(
)
}


private suspend fun checkLoggedIn() {
isLoggedIn = getUserInfoUseCase().catch { }.lastOrNull()?.isLoggedIn == true
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,6 @@ class OpenLectureViewModel @Inject constructor(
)
}


fun showGradeBottomSheet() = intent { reduce { state.copy(showSchoolLevelBottomSheet = true) } }
fun hideGradeBottomSheet() = intent { reduce { state.copy(showSchoolLevelBottomSheet = false) } }
fun popBackStack() = intent { postSideEffect(OpenLectureSideEffect.PopBackStack) }
Expand Down

0 comments on commit 111469c

Please sign in to comment.