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
In-page tab links (the "Where to start" cards' #axonos/#builders/etc.
anchors) only worked on a fresh page load. location.hash was read once,
at load time, with no hashchange listener — so clicking one of these
links after the page was already open changed the URL but never called switchView(), and the target tab silently stayed hidden. The read is now
wrapped in applyHash() and re-run on every hashchange, so the same
links work whether they're the first thing you click or the tenth.