From 17ee5d21975a2ff64e6968f05306333aad147cd7 Mon Sep 17 00:00:00 2001 From: dal Date: Fri, 22 Aug 2025 10:53:28 -0600 Subject: [PATCH] hide verification in UI --- .../ReportContainerHeaderButtons/ReportThreeDotMenu.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/web/src/layouts/ChatLayout/FileContainer/FileContainerHeader/ReportContainerHeaderButtons/ReportThreeDotMenu.tsx b/apps/web/src/layouts/ChatLayout/FileContainer/FileContainerHeader/ReportContainerHeaderButtons/ReportThreeDotMenu.tsx index 10edf41f4..e43cefa1f 100644 --- a/apps/web/src/layouts/ChatLayout/FileContainer/FileContainerHeader/ReportContainerHeaderButtons/ReportThreeDotMenu.tsx +++ b/apps/web/src/layouts/ChatLayout/FileContainer/FileContainerHeader/ReportContainerHeaderButtons/ReportThreeDotMenu.tsx @@ -47,7 +47,7 @@ export const ReportThreeDotMenu = React.memo( const saveToLibrary = useSaveToLibrary({ reportId }); const favoriteItem = useFavoriteReportSelectMenu({ reportId }); const versionHistory = useVersionHistorySelectMenu({ reportId }); - const verificationItem = useReportVerificationSelectMenu(); + // const verificationItem = useReportVerificationSelectMenu(); // Hidden - not supported yet const refreshReportItem = useRefreshReportSelectMenu({ reportId }); const duplicateReportItem = useDuplicateReportSelectMenu(); const { dropdownItem: downloadPdfItem, exportPdfContainer } = useDownloadPdfSelectMenu({ @@ -63,7 +63,7 @@ export const ReportThreeDotMenu = React.memo( favoriteItem, { type: 'divider' }, versionHistory, - verificationItem, + // verificationItem, // Hidden - not supported yet { type: 'divider' }, refreshReportItem, duplicateReportItem, @@ -76,7 +76,7 @@ export const ReportThreeDotMenu = React.memo( shareMenu, favoriteItem, versionHistory, - verificationItem, + // verificationItem, refreshReportItem, duplicateReportItem, downloadPdfItem,