diff options
author | Samuel Newman <mozzius@protonmail.com> | 2025-07-17 21:18:32 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-17 21:18:32 +0300 |
commit | d13a2e5f69fac4a4a5a89692362b827b8f0223e4 (patch) | |
tree | e0b8de202bbf9e1f74bd2f0e118073a277c819c1 /src/Navigation.tsx | |
parent | 2c0c9bf803f995508e35d4dba954924c53beec87 (diff) | |
download | voidsky-d13a2e5f69fac4a4a5a89692362b827b8f0223e4.tar.zst |
use push to convo mechanism (#8653)
Diffstat (limited to 'src/Navigation.tsx')
-rw-r--r-- | src/Navigation.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Navigation.tsx b/src/Navigation.tsx index a7e495f7c..97c351bc8 100644 --- a/src/Navigation.tsx +++ b/src/Navigation.tsx @@ -873,9 +873,9 @@ function RoutesContainer({children}: React.PropsWithChildren<{}>) { } else { // @ts-expect-error nested navigators aren't typed -sfn navigate('MessagesTab', { - screen: 'MessagesConversation', + screen: 'Messages', params: { - conversation: payload.convoId, + pushToConversation: payload.convoId, }, }) } |