returning true to mark the fragment back as handled by the fragment itself

This commit is contained in:
Adam Brown 2022-02-22 10:34:24 +00:00
parent 182dc2a098
commit 4975406e66
1 changed files with 1 additions and 1 deletions

View File

@ -52,6 +52,6 @@ class FtueAuthAccountCreatedFragment @Inject constructor(
override fun onBackPressed(toolbarButton: Boolean): Boolean {
viewModel.handle(OnboardingAction.PostViewEvent(OnboardingViewEvents.OnTakeMeHome))
return false
return true
}
}