diff --git a/src/pages/audit.tsx b/src/pages/audit.tsx index d498e177..3190d0f9 100644 --- a/src/pages/audit.tsx +++ b/src/pages/audit.tsx @@ -568,7 +568,10 @@ export default function AuditPage() { ? t("finding.collapseAria", { name: group.name }) : t("finding.expandAria", { name: group.name }) } - className="flex w-full cursor-pointer items-center justify-between rounded-xl px-4 py-3 transition-all duration-150 hover:bg-muted/50 hover:shadow-sm" + className={clsx( + "flex w-full cursor-pointer items-center justify-between px-4 py-3 transition-all duration-150 hover:bg-muted/50 hover:shadow-sm", + isOpen ? "rounded-t-xl rounded-b-none" : "rounded-xl", + )} >