Skip to content

Commit

Permalink
Add missing inclusive
Browse files Browse the repository at this point in the history
  • Loading branch information
Rawa committed Jul 3, 2024
1 parent 9098624 commit b9c23bd
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,9 @@ fun Splash(navigator: DestinationsNavigator) {
popUpTo(NavGraphs.root) { inclusive = true }
}
SplashUiSideEffect.NavigateToPrivacyDisclaimer ->
navigator.navigate(PrivacyDisclaimerDestination) { popUpTo(NavGraphs.root) {} }
navigator.navigate(PrivacyDisclaimerDestination) {
popUpTo(NavGraphs.root) { inclusive = true }
}
SplashUiSideEffect.NavigateToRevoked ->
navigator.navigate(DeviceRevokedDestination) {
popUpTo(NavGraphs.root) { inclusive = true }
Expand Down

0 comments on commit b9c23bd

Please sign in to comment.