diff --git a/apps/console/src/components/trustCenter/PublicTrustCenterAudits.tsx b/apps/console/src/components/trustCenter/PublicTrustCenterAudits.tsx index 7338dd078..88c03bfc1 100644 --- a/apps/console/src/components/trustCenter/PublicTrustCenterAudits.tsx +++ b/apps/console/src/components/trustCenter/PublicTrustCenterAudits.tsx @@ -8,10 +8,12 @@ import { Th, Button, IconArrowDown, + IconLock, } from "@probo/ui"; import { useTranslate } from "@probo/i18n"; import { sprintf } from "@probo/helpers"; import { FrameworkLogo } from "/components/FrameworkLogo"; +import { TrustCenterAccessRequestDialog } from "./TrustCenterAccessRequestDialog"; type Audit = { id: string; @@ -27,16 +29,21 @@ type Audit = { filename: string; downloadUrl: string | null; } | null; - reportUrl: string | null; }; type Props = { audits: Audit[]; organizationName: string; isAuthenticated: boolean; + trustCenterId: string; }; -export function PublicTrustCenterAudits({ audits, organizationName, isAuthenticated }: Props) { +export function PublicTrustCenterAudits({ + audits, + organizationName, + isAuthenticated, + trustCenterId +}: Props) { const { __ } = useTranslate(); if (audits.length === 0) { @@ -74,8 +81,8 @@ export function PublicTrustCenterAudits({ audits, organizationName, isAuthentica
- {__("No vendor information is currently available.")} + {__("No subcontractor information is currently available.")}
- {__("Send a 7-day access token to an external person to view your trust center")} -
+ {__("Send a 7-day access token to an external person to view your trust center")} +
+ {__("Update the display name for this access invitation")} +