diff --git a/src/scenes/Partners/Detail/Tabs/Profile/PartnerContactSection.tsx b/src/scenes/Partners/Detail/Tabs/Profile/PartnerContactSection.tsx index 921766e89c..2f3a14c6fc 100644 --- a/src/scenes/Partners/Detail/Tabs/Profile/PartnerContactSection.tsx +++ b/src/scenes/Partners/Detail/Tabs/Profile/PartnerContactSection.tsx @@ -3,6 +3,7 @@ import { Skeleton, Tooltip, Typography } from '@mui/material'; import { canEditAny } from '~/common'; import { ActionableSection } from '~/components/ActionableSection'; import { IconButton } from '~/components/IconButton'; +import { Redacted } from '~/components/Redacted'; import { PartnerDetailsFragment } from '../../PartnerDetail.graphql'; interface PartnerContactSectionProps { @@ -35,14 +36,29 @@ export const PartnerContactSection = ({ } > - + Business Address - - {!partner?.address.value ? ( + + {!partner ? ( - ) : ( + ) : !partner.address.canRead ? ( + + ) : partner.address.value ? ( partner.address.value + ) : ( + + None + )}