edge.node),
- (node) => documentTypeLabel(node.documentType, __),
+ (node) => documentTypeLabel(node.documentType, __)
);
const hasAudits = audits.length > 0;
const hasDocuments = hasAudits || documents.length > 0;
@@ -107,7 +112,7 @@ function Documents({
{audits.length > 0 && (
<>
- {__("Certifications")}
+ {__("Compliance")}
{audits.map((audit) => (
))}
@@ -144,7 +149,7 @@ function Subprocessors({
return null;
}
- const hasAnyCountries = vendors.some(vendor => {
+ const hasAnyCountries = vendors.some((vendor) => {
const vendorData = vendor.node as any;
return vendorData.countries && vendorData.countries.length > 0;
});
@@ -155,12 +160,16 @@ function Subprocessors({
{sprintf(
__("Third-party subprocessors %s work with:"),
- organizationName,
+ organizationName
)}
{vendors.map((vendor) => (
-
+
))}
{__("See all subprocessors")}