Skip to content

Commit

Permalink
fix: ktlint check
Browse files Browse the repository at this point in the history
  • Loading branch information
yangsooplus committed Feb 19, 2024
1 parent c8a0695 commit 5b9de8c
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@ class SusuStatisticsViewModel @Inject constructor(
}

fun getSusuStatistics(onFinish: () -> Unit = {}) {
if (
(currentState.relationship !in currentState.relationshipConfig &&
currentState.category !in currentState.categoryConfig) ||
currentState.isBlind
if (currentState.isBlind) return

if (currentState.relationship !in currentState.relationshipConfig &&
currentState.category !in currentState.categoryConfig
) {
return
}
Expand Down

0 comments on commit 5b9de8c

Please sign in to comment.