Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/pages/audit.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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",
)}
>
<div className="flex items-center gap-3">
<ChevronRight
Expand Down
Loading