Skip to content

Commit

Permalink
fix: type issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher2K committed Nov 29, 2024
1 parent 0027f32 commit a42450a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion swapify_web/src/features/auth/components/sign-up-form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const SignUpFormSchema = z.object({
.describe("Spotify account email"),
consent: z.boolean().refine((val) => val === true, {
message: "You must agree to the terms of service and privacy policy",
}),
}) as unknown as z.ZodBoolean,
});
export type SignUpFormData = z.infer<typeof SignUpFormSchema>;

Expand Down

0 comments on commit a42450a

Please sign in to comment.