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 Undefined context after redirect with wrapInSuspense at root route. It used to work fine in version 1.33.4. ### Your Example Website or App https://stackblitz.com/edit/github-jr3nax-t75gmj?file=src%2Froutes%2F__root.tsx ### Steps...
### Describe the bug when hard-loading a page for the first time, it will show the loader (or an empty page) for the `pendingMinMs` time even if the route has...
### Describe the bug ```ts import { createRootRoute, createRouter, RouterProvider, } from "@tanstack/react-router"; import { render, act } from "@testing-library/react"; import { test } from "vitest"; test("router", async () =>...
### Describe the bug As title, I cannot export `PickAsRequired` or `PickAsPartial` types according to kitchen query example ### Your Example Website or App https://tanstack.com/router/latest/docs/framework/react/examples/kitchen-sink-react-query ### Steps to Reproduce the...
- This improves the ts performance significantly of`useSearch` and `useParams` when `strict` is false for merging of search and params Still need to make it default
### Describe the bug The type of `Route.fullPath` is more or less the path that is passed to the createRoute function, but during runtime it is the current path of...
Possibly fixes #1650
### Describe the bug We have three routes: `index.tsx` ```tsx import { createFileRoute } from "@tanstack/react-router"; import { z } from "zod"; const indexFilters = z.object({ search: z.string().catch("").optional(), }); const...
### Describe the bug I've discovered that the missing context bug isn't fully fixed in `1.33.7`. Also sorry for sort of spamming the other closed issue, I thought I'd open...
### Describe the bug Using Route.update() does not update options in state, especially staticData. ### Your Example Website or App https://stackblitz.com/edit/tanstack-router-bjnyvy?file=src%2Froutes%2F__root.tsx ### Steps to Reproduce the Bug or Issue 1....