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.
fix: HMR
### Which project does this relate to? Router ### Describe the bug I have `notFoundComponent` on root component, and I'm `throw notFoundError()` on child component. Instead of showing root's defined...
### Which project does this relate to? Start ### Describe the bug http://localhost:3000/not-found returns a `200`, not a `400` ### Your Example Website or App https://xoriwpjxoogithub-2brh--3001--134daa3c.local-credentialless.webcontainer.io/not-found ### Steps to Reproduce...
### Which project does this relate to? Router ### Describe the bug I'm using I followed the docs for creating `@chakra-ui/react` and was following the docs for creating a custom...
### Which project does this relate to? Router ### Describe the bug Even though `info?: { componentStack: string; }` appears in `ErrorComponentProps`, it is never passed to the error component....
### Which project does this relate to? Router ### Describe the bug It is possible to code split the notFoundComponent, pendingComponent and errorComponent when manually code splitting using the .lazy.tsx...
### Which project does this relate to? Router ### Describe the bug When the error is inside `params.parse`, it doesn't reset parent's routes loader states and the UI is stuck...
### Which project does this relate to? Start ### Describe the bug Returning strings with some specific characters causes hydration errors e.g: ```tsx import { Outlet, createFileRoute } from "@tanstack/react-router";...
Currently, when you call `notFound({ throw: true })` Typescript does not identify it as never returning. A discussion of this issue: https://github.com/TanStack/router/discussions/2168 Here is an example: ```ts export const Route...