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
Is it possible to remove the trailing slash?
/agreements/ and when using search params, it comes out to something similar to /agreements/?page=1&size=10. Similarly, when navigating to the item page, the generated url looks like /agreements/12345/.
Is it possible to remove that trailing slash to get routes to look like /agreements , /agreements?page=1&size=10, and /agreements/12345?...
Is there a problem starting with version 0.0.1-beta.168?
<Link>. And very often, when I click on a Link, it doesn't do the navigation. I have to click a second time. I tried to put an onClick listener on the Link and I can clearly see that some events are not being received. However, we have all the touch events. And the strangest thing is that if I do onTouchStart={evt => evt.preventDefault()} then my...how to do route groups?
Support for base path?
Vitest rendering an empty div when RouterProvider is used
Getting routeContext on components?
Should match.routeId be a valid routeId?

Throwing redirect from beforeLoad or loader doesn't work as expected
/ redirects to /{defaultLanguage}, in my example /en
- /{invalidLanguage} redirects to /error
- /{validLanguage} doesn't redirect anywhere...Going back to previous route
Is the useNavigate hook supposed to not be typesafe?
SearchParams cannot distinguish between an array of 1 and a single primitive value
/shop?pageIndex=3&includeCategories=%5B%22electronics%22%2C%22gifts%22%5D&sortBy=price&desc=true
However in a sandbox I'm using to test this functionality, I'm noticing that arrays are represented as key=firstValue&key=secondValue. Calling useSearch() against this results in { key: ['firstValue', 'secondValue'] }.
The issue is that if you set an array of 1, the url is in the same format as if you didn't use an array at all, thus calling useSearch results in { key: 'firstValue' } instead of { key: ['firstValue']}....useParams arguments no longer optional
const params = useParams(). After bumping to version 179, this function call is no longer valid. Reviewing the code, it looks like opts was changed from optional to required. Was this intentional? If so, what is the new syntax if I just want to get the current matching parameters of a page?Type Inference with useParams and useSearch?
useParams and useSearch. Here is the route definition:
```ts
export const resourceTabsSchema = z.object({
tab: z...Which package should I be importing for router?
@tanstack/react-router or @tanstack/router? I've seen them both included as dependencies in example sandboxes, and I'm not sure what the difference is (if any?)Angular resolver equivalent for react
Runtime Error while routing.

router base url
Navigation Blocking doesn't work with browser's back button.
Without modify the URL to navigate between different routes or views.