in scripts/navigation-loader.js [151:158]
function resetTocState() {
const tocKeys = safeSessionStorage.getKeys();
tocKeys.forEach((key) => {
if (key.startsWith(TOC_STATE_KEY_PREFIX)) {
safeSessionStorage.removeItem(key);
}
});
}