From 22a523dce6650408c693d89d2effe11300b3d34c Mon Sep 17 00:00:00 2001 From: Marc Glasser Date: Tue, 6 Jan 2026 09:00:52 -1000 Subject: [PATCH 1/2] Remove navigation to Concierge report after proactive review modal interaction --- src/components/ProactiveAppReviewModalManager.tsx | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/components/ProactiveAppReviewModalManager.tsx b/src/components/ProactiveAppReviewModalManager.tsx index bade9c5944f9..abaefd4b0d22 100644 --- a/src/components/ProactiveAppReviewModalManager.tsx +++ b/src/components/ProactiveAppReviewModalManager.tsx @@ -20,11 +20,6 @@ function ProactiveAppReviewModalManager() { (response: AppReviewResponse, message?: string) => { // Call the action which will create an optimistic comment (if the message is provided) and call the API respondToProactiveAppReview(response, proactiveAppReview, message, conciergeReportID); - - // Navigate to Concierge DM if we have a report ID and this wasn't a skip - if (conciergeReportID && response !== 'skip') { - Navigation.navigate(ROUTES.REPORT_WITH_ID.getRoute(conciergeReportID)); - } }, [conciergeReportID, proactiveAppReview], ); From 5dad234e35cc7bd2a9b7bba258d43f3e61d287ac Mon Sep 17 00:00:00 2001 From: Marc Glasser Date: Tue, 6 Jan 2026 09:06:04 -1000 Subject: [PATCH 2/2] Remove imports --- src/components/ProactiveAppReviewModalManager.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/components/ProactiveAppReviewModalManager.tsx b/src/components/ProactiveAppReviewModalManager.tsx index abaefd4b0d22..b6209bdd636e 100644 --- a/src/components/ProactiveAppReviewModalManager.tsx +++ b/src/components/ProactiveAppReviewModalManager.tsx @@ -3,9 +3,7 @@ import useOnyx from '@hooks/useOnyx'; import useProactiveAppReview from '@hooks/useProactiveAppReview'; import requestStoreReview from '@libs/actions/StoreReview'; import {respondToProactiveAppReview} from '@libs/actions/User'; -import Navigation from '@libs/Navigation/Navigation'; import ONYXKEYS from '@src/ONYXKEYS'; -import ROUTES from '@src/ROUTES'; import type {AppReviewResponse} from '@src/types/onyx/AppReview'; import ProactiveAppReviewModal from './ProactiveAppReviewModal';