react-query-questions
solid-query-questions
table-questions
virtual-questions
router-questions
react-charts-questions
ranger-questions
vue-query-questions
svelte-query-questions
bling-questions
form-questions
angular-query-questions
start-questions
db-questions
start-showcase
router-showcase
📣-announcements
Possible type exhaustion with dependency injection?
{queryClient: typeof queryClient} it then loses the types of the queryParams in the <Link /> component and also triggers some Type instantiation is excessively deep and possibly infinite. errors....
Devtools - Uncaught Error: Invariant failed

TS errors when you use search params to conditionally render in the "root" of a component

Creating a <Link/> from a `match` and filtering matches to remove layout routes
useMatches hook but have now replaced that with useRouter().state.matches as it contains the context type on each match.
The first problem I have is that useRouter().state.matches returns layout routes as well as regular routes. useMatches did not do this. Is there a recommended why of filtering those out?
Secondly, am I able to create a <Link/> from a particular match? I've tried <Link id={match.id} params={match.params} search={match.search} />, but that doesn't work. I think that makes sense because it doesn't know if each of those three parameters are the correct type for each other....error TS2344 without skipLibCheck: true
skipLibCheck is not true in my tsconfig.json. The literals in the union are paths of the direct children of my RootRoute. Is there a good way to avoid these errors without enabling skipLibCheck?
```log
node_modules/.pnpm/@tanstack+router@0.0.1-beta.119_react-dom@18.2.0_react@18.2.0/node_modules/@tanstack/router/build/types/react.d.ts:23:106 - error TS2344: Type 'TFrom' does not satisfy the constraint '"" | "/" | "/dashboard"'.
Type 'string' is not assignable to type '"" | "/" | "/dashboard"'....Lots-o-re-rendering?

Scroll Restoration?
Outlet?...SSR error when not using SSR
```...
Use router for SPA?
How do I declare the type for the props of a Route component?
Route constructor.
I've looked at the RouteProps type but 14 generic type parameters tells me it's not meant for direct use. I can't just Pick<typeof routeInstance, 'useParams' | etc> as that's a circular reference. Additionally, I can't find a MakeRouteProps like MakeLinkPropsOptions....Router Loaders and/or Query
Page transitions
Unavailable nested routes not throwing 404 page
/about works as expected but /about/xyzis also showing the contents of the about page. This page should ideally show a 404 page.
Any idea what am I missing here?
```tsx...Is router.state.currentMatches supposed to return folder path and it's index?

Is it possible to display subpath on the root Outlet?
/customers/$id) without putting another Outlet in the parent, but using the main one.
In the end I want the dynamic path to display instead of the parent
Example done in react router:
https://stackblitz.com/edit/stackblitz-starters-casmii?file=src%2FApp.tsx...What version should I use to match the documentation?

Supabase auth does not work with tanstack router
#accessToken= in the url.Best pattern for fallback paths?
router method? Then I can redirect manually?...