diff --git a/domain/lib/src/usecases/authentication/get_authorized_user_interactor.dart b/domain/lib/src/usecases/authentication/get_authorized_user_interactor.dart index ef08cffd0..c2bfd36e4 100644 --- a/domain/lib/src/usecases/authentication/get_authorized_user_interactor.dart +++ b/domain/lib/src/usecases/authentication/get_authorized_user_interactor.dart @@ -45,8 +45,7 @@ class GetAuthorizedInteractor { .onError((error, stackTrace) { if(error is NotAuthorizedUser){ throw error; - } - else{ + }else{ return authenticationRepository.getAuthorizedUserOffline(); } });