Skip to content

Commit 3ddb018

Browse files
ci: apply automated fixes
1 parent ab4c852 commit 3ddb018

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/blog/from-docs-to-agents.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@ Inside the skill, you write what the agent needs to get right — including what
6060
Use `validateSearch` to define type-safe search params on a route:
6161

6262
const Route = createFileRoute('/products')({
63-
validateSearch: z.object({
64-
page: z.number().default(1),
65-
filter: z.string().optional(),
66-
}),
63+
validateSearch: z.object({
64+
page: z.number().default(1),
65+
filter: z.string().optional(),
66+
}),
6767
})
6868

6969
## Common Mistakes

0 commit comments

Comments
 (0)