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

### Which project does this relate to? Start ### Describe the bug This issue is a follow up for https://github.com/TanStack/router/discussions/2434 discussion: This server function: ``` const getHashId = createServerFn("GET", ()...

bug
start

Similar to how `route.options.meta()` already behaves it would be nice to pass the `loaderData` and `match` to the `links()` function as well. For my specific use-case I want to generate...

enhancement
start

### Which project does this relate to? Router ### Describe the bug ``` export const deleteUserFn = createServerFn('POST', async () => { const { user } = await throwIfNoSession() await...

bug
types
start

### Which project does this relate to? Start ### Describe the bug Warning about notFoundError is shown when rendering root route and there's no defaultNotFoundComponent set, even though it renders...

bug
start

### Which project does this relate to? Start ### Describe the bug When calling a server function from another server function, the payload is passed incorrectly, wrapped in an object...

bug
start

### Which project does this relate to? Router ### Describe the bug Hi, I added a few route masks and it used to all work properly, but now only 1...

information needed

Decreasing overall check time and instantiations. Before: ``` > tsc --extendedDiagnostics Files: 683 Lines of Library: 41276 Lines of Definitions: 86334 Lines of TypeScript: 24509 Lines of JavaScript: 0 Lines...

### Which project does this relate to? Router ### Describe the bug There's an issue with the `MatchRoute` component when used in conjunction with routes that have custom `parse`/`stringify` functions...

### Which project does this relate to? Router ### Describe the bug I wrote a hook which should replace the slug in the URL if it doesn't match reality anymore....