Skip to content

Commit

Permalink
Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
jzempel committed Dec 18, 2024
1 parent f849bac commit bfd001d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ export const ColorWell: React.FC<IColorWellProps> = React.memo(
}, [throttledChange]);

return (
// eslint-disable-next-line jsx-a11y/prefer-tag-over-role
<StyledColorWell
$hue={hue}
ref={containerRef}
Expand Down
1 change: 0 additions & 1 deletion packages/colorpickers/src/elements/ColorSwatch/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ export const ColorSwatch = forwardRef<HTMLTableElement, IColorSwatchProps>(
});

return (
/* eslint-disable-next-line jsx-a11y/prefer-tag-over-role */
<StyledColorSwatch role="grid" ref={mergeRefs([gridRef, ref])} {...props}>
<tbody>
{colors.map((row: ILabeledColor[], _rowIndex: number) => (
Expand Down

0 comments on commit bfd001d

Please sign in to comment.