removing fully qualified import

This commit is contained in:
Adam Brown 2022-03-17 16:38:42 +00:00
parent 3d20d46eb3
commit d77061b229

View file

@ -273,7 +273,7 @@ class OnboardingViewModel @AssistedInject constructor(
if (action.hasLoadingState()) { if (action.hasLoadingState()) {
setState { copy(asyncRegistration = Loading()) } setState { copy(asyncRegistration = Loading()) }
} }
kotlin.runCatching { registrationActionHandler.handleRegisterAction(registrationWizard, action) } runCatching { registrationActionHandler.handleRegisterAction(registrationWizard, action) }
.fold( .fold(
onSuccess = { onSuccess = {
when { when {