Skip to content

Commit f76b537

Browse files
committed
Get rid of some biome-ignore comments
1 parent f82204c commit f76b537

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/react-datetime-picker/src/DateTimePicker.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ const iconProps = {
3333
};
3434

3535
const CalendarIcon = (
36-
// biome-ignore lint/a11y/noSvgWithoutTitle: Purely decorative icon
3736
<svg
3837
{...iconProps}
38+
aria-hidden="true"
3939
className={`${baseClassName}__calendar-button__icon ${baseClassName}__button__icon`}
4040
>
4141
<rect fill="none" height="15" width="15" x="2" y="2" />
@@ -45,9 +45,9 @@ const CalendarIcon = (
4545
);
4646

4747
const ClearIcon = (
48-
// biome-ignore lint/a11y/noSvgWithoutTitle: Purely decorative icon
4948
<svg
5049
{...iconProps}
50+
aria-hidden="true"
5151
className={`${baseClassName}__clear-button__icon ${baseClassName}__button__icon`}
5252
>
5353
<line x1="4" x2="15" y1="4" y2="15" />

0 commit comments

Comments
 (0)