This commit addresses issue #174 where we encountered a React warning related to the use of tabindex in some of React components.
Changes Made
fixed the warning by correcting the use of tabindex to tabIndex (camel case) in the affected React components. This aligns with React's naming conventions for DOM properties.
Issue
This commit addresses issue #174 where we encountered a React warning related to the use of
tabindex
in some of React components.Changes Made
fixed the warning by correcting the use of
tabindex
totabIndex
(camel case) in the affected React components. This aligns with React's naming conventions for DOM properties.