syncWithLocation feature of the hook in Refine is set to false by default. This means that the state of (e.g., sort order, filters, pagination) is not automatically encoded in the query parameters of the URL, and when the URL changes, the state is not automatically updated to match.syncWithLocation to true and now want to disable it, you can do so by setting syncWithLocation back to false in your hook. Here's how you can do it:useList hook in Refine. The available hooks mentioned in the extracts are useTable and , both of which have a syncWithLocation property.syncWithLocation, you can set it to false:useTable:useList hook not mentioned in the extracts, I would recommend checking the specific documentation for that hook.useSimpleListuseSimpleListuseSimpleListuseSimpleListuseSimpleListuseSimpleListuseSimpleListuseSimpleList({
syncWithLocation: false,
}); useSimpleList({
syncWithLocation: false,
}); useTable({
syncWithLocation: false,
});