Kitchen Sink Example
preSearchFilters: [
// Persist (or set as default) the usersView search param
// while navigating within or to this route (or it's children!)
(search) => ({
...search,
usersView: {
...search.usersView,
},
}),
],I know this is now deprecated in place of search middleware. However does this preSearchFilter actually do anything in the kitchen sink example? Nothing seems to change with this snippet removed