diff --git a/src/components/WalletStatementModal/index.native.tsx b/src/components/WalletStatementModal/index.native.tsx index 8dbc743a02ee..8717ac7f8472 100644 --- a/src/components/WalletStatementModal/index.native.tsx +++ b/src/components/WalletStatementModal/index.native.tsx @@ -33,7 +33,7 @@ function WalletStatementModal({statementPageURL, session}: WalletStatementProps) if (type === CONST.WALLET.WEB_MESSAGE_TYPE.CONCIERGE) { webViewRef.current.stopLoading(); - Report.navigateToConciergeChat(); + Report.navigateToConciergeChat(true); } if (type === CONST.WALLET.WEB_MESSAGE_TYPE.STATEMENT && url) { diff --git a/src/components/WalletStatementModal/index.tsx b/src/components/WalletStatementModal/index.tsx index d6120b842ddc..d469eedc9761 100644 --- a/src/components/WalletStatementModal/index.tsx +++ b/src/components/WalletStatementModal/index.tsx @@ -24,7 +24,7 @@ function WalletStatementModal({statementPageURL, session}: WalletStatementProps) } if (event.data.type === CONST.WALLET.WEB_MESSAGE_TYPE.CONCIERGE) { - Report.navigateToConciergeChat(); + Report.navigateToConciergeChat(true); } if (event.data.type === CONST.WALLET.WEB_MESSAGE_TYPE.STATEMENT && event.data.url) { diff --git a/src/pages/GetAssistancePage.tsx b/src/pages/GetAssistancePage.tsx index b543524fc68e..3d2aac1f7870 100644 --- a/src/pages/GetAssistancePage.tsx +++ b/src/pages/GetAssistancePage.tsx @@ -37,7 +37,7 @@ function GetAssistancePage({route, account}: GetAssistancePageProps) { const menuItems: MenuItemWithLink[] = [ { title: translate('getAssistancePage.chatWithConcierge'), - onPress: () => Report.navigateToConciergeChat(), + onPress: () => Report.navigateToConciergeChat(true), icon: Expensicons.ChatBubble, shouldShowRightIcon: true, wrapperStyle: [styles.cardMenuItem], diff --git a/src/pages/ReimbursementAccount/ConnectBankAccount/components/FinishChatCard.tsx b/src/pages/ReimbursementAccount/ConnectBankAccount/components/FinishChatCard.tsx index 7ecf9b9ad253..5f5786fd51c7 100644 --- a/src/pages/ReimbursementAccount/ConnectBankAccount/components/FinishChatCard.tsx +++ b/src/pages/ReimbursementAccount/ConnectBankAccount/components/FinishChatCard.tsx @@ -27,7 +27,7 @@ function FinishChatCard({requiresTwoFactorAuth, reimbursementAccount}: FinishCha const styles = useThemeStyles(); const policyID = reimbursementAccount?.achData?.policyID ?? ''; const shouldShowResetModal = reimbursementAccount.shouldShowResetModal ?? false; - const handleNavigateToConciergeChat = () => Report.navigateToConciergeChat(); + const handleNavigateToConciergeChat = () => Report.navigateToConciergeChat(true); return (