Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aidansunbury committed Dec 28, 2024
1 parent 39dd8c6 commit 0f4f5ac
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions packages/test-app/src/router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,6 @@ const postsRouter = t.router({
}),
});



const multiRouter = {
userRouter,
postsRouter,
Expand Down Expand Up @@ -311,7 +309,8 @@ export const testRouter = t.router({
}),
nonObjectInput: t.procedure
.meta({
description: "This input is just a string, not a property on an object.\n~~~ts\nt.procedure\n\t.meta({\n\t\tdescription: \"...\",\n\t})\n\t.input(z.string())\n\t.query(({ input }) => {\n\t\treturn `Your input was ${input}`;\n\t}),",
description:
'This input is just a string, not a property on an object.\n~~~ts\nt.procedure\n\t.meta({\n\t\tdescription: "...",\n\t})\n\t.input(z.string())\n\t.query(({ input }) => {\n\t\treturn `Your input was ${input}`;\n\t}),',
})
.input(z.string())
.query(({ input }) => {
Expand Down

0 comments on commit 0f4f5ac

Please sign in to comment.