Skip to content

Commit

Permalink
optimize
Browse files Browse the repository at this point in the history
  • Loading branch information
dseverns-livefront committed Sep 10, 2024
1 parent 0885e5d commit 88a1bfd
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1413,10 +1413,9 @@ class AuthRepositoryImpl(
}
}

private fun getOnboardingStatus(userId: String): OnboardingStatus? {
val status = authDiskSource.getOnboardingStatus(userId = userId)
return status
}
private fun getOnboardingStatus(
userId: String,
): OnboardingStatus? = authDiskSource.getOnboardingStatus(userId = userId)

/**
* Update the saved state with the force password reset reason.
Expand Down

0 comments on commit 88a1bfd

Please sign in to comment.