Skip to content

Commit

Permalink
fix for Onboarding test button overlay
Browse files Browse the repository at this point in the history
  • Loading branch information
cdOut committed Mar 26, 2024
1 parent cd6b261 commit e700df5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/TestToolMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,10 @@ function TestToolMenu({user = USER_DEFAULT, network}: TestToolMenuProps) {
<Button
small
text="Navigate"
onPress={() => Navigation.navigate(ROUTES.ONBOARDING_PERSONAL_DETAILS)}
onPress={() => {
Navigation.dismissModal();
Navigation.navigate(ROUTES.ONBOARDING_PERSONAL_DETAILS);
}}
/>
</TestToolRow>
</>
Expand Down

0 comments on commit e700df5

Please sign in to comment.