Skip to content
Snippets Groups Projects
Commit 5ed5c0a0 authored by Taras's avatar Taras
Browse files

Fix lint

parent 62e1a521
No related branches found
No related tags found
No related merge requests found
......@@ -28,7 +28,10 @@ class SettingsViewModel @Inject constructor(
val clearCacheLiveData = SingleEventLiveData<Unit>()
fun logOut() {
launchBg { logOutLiveData.postValue(logoutDataSource.logOut()) }
launchBg {
val result = logoutDataSource.logOut()
logOutLiveData.postValue(result)
}
}
fun deactivateAccount() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment