router icon indicating copy to clipboard operation
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.

Results 526 router issues
Sort by recently updated
recently updated
newest added

### Describe the bug The first time a splat/catch-all route is matched, the data is cached and the page is rendered correctly, but subsequent matches after that always return the...

### Describe the bug I have a fairly small project (it will grow), right now there are about ~20 pages, but I am already facing some performance issues after including...

### Describe the bug If I try to redirect a user in `beforeLoad` in my __root.tsx file then I get `A component suspended while responding to synchronous input. This will...

### Describe the bug `pendingComponent` not shown while beforeLoad is executing, but according to the docs it should. > If this function returns a promise, the route will be put...

Discussion as a feature in https://github.com/TanStack/router/discussions/1155 Adds ability to opt out of behavior where the router (specifically, the DOM/UI library implementation) handles scrolling to hash element matching the current hash...

### Describe the bug Setting `defaultPendingMs` to 0 render the errorComponent if the root route has no pendingComponent or is not wrapped in Suspsense even if a child route has...

### Describe the bug I came across some non-functional aspects of the documentation. One of them is the DevTool outside the provider. It's not working: https://tanstack.com/router/v1/docs/devtools#manually-passing-the-router-instance I'm providing an example...

### Describe the bug Using this example: https://github.com/TanStack/router/tree/main/examples/react/basic-ssr-file-based On a dynamic single post route, when NotFound is thrown, the http status code is not set to 404. I've scoured the...