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
There are components in the DSR project that uses hardcoded heading tags which causes issues with illogical heading orders. Axe-core rule
Ex:
<h1> First Heading </h1>
<SetupAssistant ...>
<SetupAssistantStep
header={(<h2>Should be a h2 tag</h2>)}
...
/>
</SetupAssistant>
SetupAssistantStep generates a parent <h3> and renders the heading prop as a child, breaking the logical ordering of headings. The tag is rendered on this line.