Skip to content

Commit

Permalink
Fix validation error in findFirst
Browse files Browse the repository at this point in the history
  • Loading branch information
lassejlv committed Dec 11, 2024
1 parent 93c73b4 commit 3d82d4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion routes/findFirst/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ import { z } from "zod";

export const schema = z.object({
table: z.string(),
where: z.any().optional(),
where: z.any()
})

0 comments on commit 3d82d4f

Please sign in to comment.