Skip to content

Commit

Permalink
Fix navigation mixup in settings
Browse files Browse the repository at this point in the history
  • Loading branch information
Pururun committed Jun 19, 2024
1 parent 88c5d62 commit b962556
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ fun Settings(navigator: DestinationsNavigator) {
onVpnSettingCellClick = dropUnlessResumed { navigator.navigate(VpnSettingsDestination) },
onSplitTunnelingCellClick =
dropUnlessResumed { navigator.navigate(SplitTunnelingDestination) },
onApiAccessClick = dropUnlessResumed { navigator.navigate(ApiAccessListDestination) },
onReportProblemCellClick =
dropUnlessResumed { navigator.navigate(ApiAccessListDestination) },
onApiAccessClick = dropUnlessResumed { navigator.navigate(ReportProblemDestination) },
dropUnlessResumed { navigator.navigate(ReportProblemDestination) },
onBackClick = dropUnlessResumed { navigator.navigateUp() }
)
}
Expand Down

0 comments on commit b962556

Please sign in to comment.