@tanstack/react-router 0.0.1-beta.265 → 0.0.1-beta.267

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -280,7 +280,6 @@
280
280
  window: win,
281
281
  parseLocation: () => {
282
282
  const hashHref = win.location.hash.split('#').slice(1).join('#') ?? '/';
283
- console.log(hashHref);
284
283
  return parseHref(hashHref, win.history.state);
285
284
  },
286
285
  createHref: href => `${win.location.pathname}${win.location.search}#${href}`
@@ -1554,7 +1553,6 @@
1554
1553
  pathChanged: routerState.location.href !== routerState.resolvedLocation?.href
1555
1554
  });
1556
1555
  if (document.querySelector) {
1557
- console.log('hello', routerState.location.hash);
1558
1556
  const el = document.getElementById(routerState.location.hash);
1559
1557
  if (el) {
1560
1558
  el.scrollIntoView();