Skip to content

Commit 2fefd91

Browse files
committed
fmt
1 parent 6d583ec commit 2fefd91

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

site/src/components/Abbr/Abbr.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,12 @@ export const Abbr: FC<AbbrProps> = ({
3030
// always have to supplement with aria-label
3131
title={title}
3232
aria-label={getAccessibleLabel(children, title, pronunciation)}
33-
className={cn("decoration-inherit", children === children.toUpperCase() ? "tracking-wide" : "tracking-normal")}
33+
className={cn(
34+
"decoration-inherit",
35+
children === children.toUpperCase()
36+
? "tracking-wide"
37+
: "tracking-normal",
38+
)}
3439
{...delegatedProps}
3540
>
3641
<span aria-hidden>{children}</span>

0 commit comments

Comments
 (0)