diff --git a/src/routes/intent/registry/index.tsx b/src/routes/intent/registry/index.tsx index 765e48fc4..bd6c3f9c8 100644 --- a/src/routes/intent/registry/index.tsx +++ b/src/routes/intent/registry/index.tsx @@ -39,7 +39,12 @@ const searchSchema = v.object({ export const Route = createFileRoute('/intent/registry/')({ validateSearch: searchSchema, - loaderDeps: ({ search }) => search, + loaderDeps: ({ search }) => ({ + q: search.q, + framework: search.framework, + sort: search.sort, + page: search.page, + }), loader: ({ deps, context: { queryClient } }) => Promise.all([ queryClient.ensureQueryData(intentStatsQueryOptions()),