Skip to content

Commit 059c9ad

Browse files
fix: rename unnecesary nullish default in CircularPulse.tsx
1 parent 1140f3b commit 059c9ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/ui/CircularPulse.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export const CircularPulse: FC<SVGProps<SVGSVGElement>> = (
99
{...props}
1010
className={
1111
"pointer-events-none absolute inset-0 left-1/2 top-1/2 z-0 block -translate-x-1/2 -translate-y-1/2 transform rounded-full " +
12-
props.className ?? ""
12+
props.className
1313
}
1414
viewBox="0 0 800 800"
1515
xmlns="http://www.w3.org/2000/svg"

0 commit comments

Comments
 (0)