Closed
Description
For example:
<a href="#first-section">First Section</a>
does work and React Spy correctly initializes.
<a href="/#first-section">First Section</a>
Doesn't work, React Spy even crash.
This is beacause we use
document.querySelector(`[href="#${item}"]`)
to get the navItems
.
And it crashes because we don't double check that navItems
array actually has non-null
values.