Ciarán Curley
Ciarán Curley
I heard the term "Stall the ball" once on a sound clip that I used to have on my moble phone called "How to learn Dublineese". So it might not...
I think this is the cause of https://github.com/TanStack/tanstack.com/issues/218 over on the docs site I have a reproduction StackBlitz of what's going on here: https://stackblitz.com/edit/tanstack-router-gvq58b Clicking the post links will work...
I did some debugging and it seems under these circumstances, `interpolatePathname` at line 968 at [`react-router/src/router.ts`](https://github.com/TanStack/router/blob/main/packages/react-router/src/router.ts) is not being passed a path with the proper params (e.g. `pathname` is `/posts/3`,...
Well my stackblitz and the tanstack docs site still have this issue I think, gonna throw up the test pr now.
It looks like `Cuda::build_tensor` mostly does this already?
I was helping @Icestonks debug this. Its pretty infuriating, that much I can tell you. Id like to know more about the api calls that people are doing with this....
More examples here https://drive.google.com/file/d/1wJ9nGSNAsntnJ7-lFKd9PithbBYW22-E/view?usp=sharing
Yeah I wasn't sure if we really needed that complex type inference machine myself, wasn't sure what the standard was. > what stops from having `usePrefetchQuery` accept variadic arguments to...
You'd go with something like this I think: ```tsx // usePrefetchQueries.tsx export function usePrefetchQueries< TQueryFnData = unknown, TError = DefaultError, TData = TQueryFnData, TQueryKey extends QueryKey = QueryKey, >( options:...
Not sure that's the case I think. Pushing new tests now, will go over this in a bit, but I don't think the default `FetchQueriesOptions` generic is blocking this.