router
router copied to clipboard
🤖 Fully typesafe Router for React (and friends) w/ built-in caching, 1st class search-param APIs, client-side cache integration and isomorphic rendering.
### Describe the bug When visiting `routes/about.tsx`, `isOnVarRoute` is true here ```ts const matchRoute = useMatchRoute(); const isOnVarRoute = Boolean(matchRoute({ to: '/$var' })); ``` ### Your Example Website or App...
### Describe the bug I expect that every every time I enter the route beforeLoad will be called ### Your Example Website or App https://stackblitz.com/edit/tanstack-router-94bxv9?file=src%2Froutes%2F_auth.tsx ### Steps to Reproduce the...
### Describe the bug I'm having this error in my console when trying to setup and run the `basic-ssr-streaming-file-based` example: `Error: React currently only supports piping to one writable stream.`...
in this case, `matchRoute` will return undefined
### Describe the bug Randomly context in `__root__` is undefined. Devtools show that context is defined in layout route $lang matcg under `__root__`, but at the same time is undefined...
### Describe the bug This is a feature request. I am using TFVC for source control and due to naming conventions, I cannot use a dollar sign in a path...
### Describe the bug I specified the notFoundComponent in the root and after I throw a not found error in child route (ex. /$type/$id) I got a warning that telling...
### Describe the bug It seems that the root route component is rendered before all the loaders finished their work. If I understand correctly no component should be rendered until...
### Describe the bug root context is undefined in useRouteContext with `strict: false` If I do `from: '__root__' ` it works and cannot be undefined, but as far as I...
### Describe the bug There is an issue when using `useBlocker` when the user tries to `navigate` to route with `beforeLoad` with `redirect`. The user will either see `Blocker` twice...