From 3d9f511ad1c30d15d6b55273ddd3049731fba927 Mon Sep 17 00:00:00 2001 From: "Jordy (Jordan) Lee" Date: Fri, 8 Sep 2023 08:54:34 +1000 Subject: [PATCH] fix(react): camel case `tabIndex` in Link component Fixes https://github.com/konstaui/konsta/issues/169. --- src/react/components/Link.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/react/components/Link.jsx b/src/react/components/Link.jsx index 62ac1fb3..c148d0df 100644 --- a/src/react/components/Link.jsx +++ b/src/react/components/Link.jsx @@ -97,7 +97,7 @@ const Link = forwardRef((props, ref) => { className={classes} {...attrs} role="link" - tabindex="0" + tabIndex="0" onClick={onClick} > {children}