diff --git a/src/components/ProactiveAppReviewModalManager.tsx b/src/components/ProactiveAppReviewModalManager.tsx index bade9c5944f9..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'; @@ -20,11 +18,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], );