Skip to content

Commit

Permalink
[C-3197] Fixes being unable to reopen Upload modals on mobile (#6283)
Browse files Browse the repository at this point in the history
  • Loading branch information
rickyrombo committed Oct 9, 2023
1 parent 7c00f48 commit 700feca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/mobile/src/components/core/ContextualMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export const ContextualMenu = (props: ContextualMenuProps) => {
const navigation = useNavigation()

const handlePress = useCallback(() => {
navigation.push(menuScreenName)
navigation.navigate(menuScreenName)
}, [navigation, menuScreenName])

const defaultRenderValue = (value: string | string[]) => {
Expand Down

0 comments on commit 700feca

Please sign in to comment.