Skip to content

Commit

Permalink
fix(react): camel case tabIndex in Link component (#170)
Browse files Browse the repository at this point in the history
Fixes #169.
  • Loading branch information
jkhaui committed Sep 11, 2023
1 parent b2bfcf0 commit f16b164
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/react/components/Link.jsx
Expand Up @@ -97,7 +97,7 @@ const Link = forwardRef((props, ref) => {
className={classes}
{...attrs}
role="link"
tabindex="0"
tabIndex="0"
onClick={onClick}
>
{children}
Expand Down

0 comments on commit f16b164

Please sign in to comment.