You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After enabling role-has-required-aria-props, the following problem is reported:
Elements with the ARIA role "switch" must have the following attributes defined: aria-checked
I believe this is a false positive. <input type="checkbox"> already has its own checked, and I'd think we shouldn't need to replace it with aria-checked. A similar issue was reported for Svelte's ESLint plugin: sveltejs/svelte#7837
Should we consider allowing checked in place of aria-checked?