From 74bb65714b7c7b128ddb27438773b149bbe5ec6c Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Wed, 22 Jan 2025 21:03:31 +0000 Subject: Post-report menu (#7446) * post-report block/delete dialog * fix * default checked * web styles * add icon to send button * wire everything up * optimisically leave convo * hide pending-leave convos * Capitalize action labels * Code style --------- Co-authored-by: Dan Abramov --- src/components/dms/LeaveConvoPrompt.tsx | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) (limited to 'src/components/dms/LeaveConvoPrompt.tsx') diff --git a/src/components/dms/LeaveConvoPrompt.tsx b/src/components/dms/LeaveConvoPrompt.tsx index cc18c1ab4..c99f8d063 100644 --- a/src/components/dms/LeaveConvoPrompt.tsx +++ b/src/components/dms/LeaveConvoPrompt.tsx @@ -1,6 +1,6 @@ import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' -import {useNavigation} from '@react-navigation/native' +import {StackActions, useNavigation} from '@react-navigation/native' import {NavigationProp} from '#/lib/routes/types' import {isNative} from '#/platform/detection' @@ -22,15 +22,10 @@ export function LeaveConvoPrompt({ const navigation = useNavigation() const {mutate: leaveConvo} = useLeaveConvo(convoId, { - onSuccess: () => { + onMutate: () => { if (currentScreen === 'conversation') { - navigation.replace( - 'Messages', - isNative - ? { - animation: 'pop', - } - : {}, + navigation.dispatch( + StackActions.replace('Messages', isNative ? {animation: 'pop'} : {}), ) } }, -- cgit 1.4.1