about summary refs log tree commit diff
path: root/src/components/Link.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Link.tsx')
-rw-r--r--src/components/Link.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Link.tsx b/src/components/Link.tsx
index 127b2edfb..6954be6a8 100644
--- a/src/components/Link.tsx
+++ b/src/components/Link.tsx
@@ -192,7 +192,7 @@ export function useLink({
               navigation.dispatch(StackActions.replace(screen, params))
             } else if (action === 'navigate') {
               // @ts-expect-error not typed
-              navigation.navigate(screen, params)
+              navigation.navigate(screen, params, {pop: true})
             } else {
               throw Error('Unsupported navigator action.')
             }