chore(plan-9): final verification + changelog summary
Straggler fixes: web-next and web-tanstack app callers did not pass {}
to queryOptions()/caller calls after Plan 9 added .input(z.object({}).strict())
to siteSettings and header procedures. All 360 tests pass, full typecheck
green across 14 packages. Refactor log §7 updated with verification summary.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -9,8 +9,8 @@ export const Route = createFileRoute("/" as any)({
|
||||
|
||||
function Home() {
|
||||
const trpc = useTRPC();
|
||||
const siteSettings = useQuery(trpc.marketingPages.siteSettings.queryOptions());
|
||||
const header = useQuery(trpc.navigation.header.queryOptions());
|
||||
const siteSettings = useQuery(trpc.marketingPages.siteSettings.queryOptions({}));
|
||||
const header = useQuery(trpc.navigation.header.queryOptions({}));
|
||||
|
||||
if (siteSettings.isPending || header.isPending) {
|
||||
return <main>Loading…</main>;
|
||||
|
||||
Reference in New Issue
Block a user