diff --git a/apps/trust/src/components/AuditRow.tsx b/apps/trust/src/components/AuditRow.tsx index f3b64a7da..c5baacbd2 100644 --- a/apps/trust/src/components/AuditRow.tsx +++ b/apps/trust/src/components/AuditRow.tsx @@ -121,28 +121,30 @@ export function AuditRow(props: { audit: AuditRowFragment$key }) { {audit.name ?? audit.framework.name} - {audit.report && audit.report.isUserAuthorized - ? ( - - ) - : ( - - )} + {audit.report && ( + audit.report.isUserAuthorized + ? ( + + ) + : ( + + ) + )} ); }