Skip to content
This repository was archived by the owner on Mar 25, 2025. It is now read-only.

Commit 5d8f4a8

Browse files
committed
chore: remove biome lint rule useSelfClosingElements
1 parent 2afc405 commit 5d8f4a8

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

biome.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@
2323
"noUnusedTemplateLiteral": "off",
2424
"useExponentiationOperator": "off",
2525
"noParameterAssign": "off",
26-
"useEnumInitializers": "off",
27-
"useSelfClosingElements": "off"
26+
"useEnumInitializers": "off"
2827
},
2928
"a11y": {
3029
"noSvgWithoutTitle": "off"

packages/core/src/Slider/Tick.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ export const TickLabel: FC<TickLabelProps> = ({
172172
return (
173173
<BaseLabel ref={el} center={position} width={width} disabled={disabled}>
174174
<LabelContainer onClick={handleClick}>
175-
<BoxHalo width={width}></BoxHalo>
175+
<BoxHalo width={width} />
176176
<Label>{label === undefined ? value : label}</Label>
177177
</LabelContainer>
178178
</BaseLabel>

0 commit comments

Comments
 (0)