From 2dd376963e3d5457c6afc19dcb0ed731f9a302fe Mon Sep 17 00:00:00 2001 From: Abdelhafidh Belalia <16493223+s77rt@users.noreply.github.com> Date: Tue, 4 Jun 2024 12:02:33 +0100 Subject: [PATCH] Show participant details page for valid members only --- src/pages/ReportParticipantDetailsPage.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/pages/ReportParticipantDetailsPage.tsx b/src/pages/ReportParticipantDetailsPage.tsx index d6c59915f0f5..86f787d2925b 100644 --- a/src/pages/ReportParticipantDetailsPage.tsx +++ b/src/pages/ReportParticipantDetailsPage.tsx @@ -26,6 +26,7 @@ import ONYXKEYS from '@src/ONYXKEYS'; import ROUTES from '@src/ROUTES'; import type SCREENS from '@src/SCREENS'; import type {PersonalDetails, PersonalDetailsList} from '@src/types/onyx'; +import NotFoundPage from './ErrorPage/NotFoundPage'; import withReportOrNotFound from './home/report/withReportOrNotFound'; import type {WithReportOrNotFoundProps} from './home/report/withReportOrNotFound'; @@ -69,6 +70,10 @@ function ReportParticipantDetails({personalDetails, report, route}: ReportPartic Navigation.navigate(ROUTES.REPORT_PARTICIPANTS_ROLE_SELECTION.getRoute(report.reportID, accountID)); }, [accountID, report.reportID]); + if (!member) { + return ; + } + return (