Skip to content

Commit

Permalink
Simplify className handling in HorizontalTermLine component
Browse files Browse the repository at this point in the history
  • Loading branch information
Adamik10 committed Nov 8, 2024
1 parent 1105a11 commit 577d7f7
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/components/horizontal-term-line/HorizontalTermLine.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,7 @@ const HorizontalTermLine: React.FC<HorizontalTermLineProps> = ({
return (
<div
data-cy={dataCy}
className={clsx(
"text-small-caption horizontal-term-line",
classNames || ""
)}
className={clsx("text-small-caption horizontal-term-line", classNames)}
>
<h3 className="text-label-bold">
{title || ""}{" "}
Expand Down

0 comments on commit 577d7f7

Please sign in to comment.