Skip to content

Commit

Permalink
[C-3665] - Prevent back on select genres page (#7447)
Browse files Browse the repository at this point in the history
  • Loading branch information
DejayJD authored Feb 5, 2024
1 parent 80debdf commit 8e02b23
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/mobile/src/screens/sign-on-screen/SignOnStack.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,11 @@ export const SignOnStack = (props: SignOnStackProps) => {
component={CreateLoginDetailsScreen}
/>
<Stack.Screen name='FinishProfile' component={FinishProfileScreen} />
<Stack.Screen name='SelectGenre' component={SelectGenresScreen} />
<Stack.Screen
name='SelectGenre'
component={SelectGenresScreen}
options={{ headerLeft: () => null, gestureEnabled: false }}
/>
<Stack.Screen name='SelectArtists' component={SelectArtistsScreen} />
<Stack.Screen
name='AccountLoading'
Expand Down

0 comments on commit 8e02b23

Please sign in to comment.