chore: update pr based on review

This commit is contained in:
Ephraim Atta-Duncan
2024-02-14 14:52:18 +00:00
parent cab875f68a
commit c680cfc24f
5 changed files with 4 additions and 24 deletions

View File

@ -26,9 +26,3 @@ export const ZSignUpMutationSchema = z.object({
export type TSignUpMutationSchema = z.infer<typeof ZSignUpMutationSchema>;
export const ZVerifyPasswordMutationSchema = ZSignUpMutationSchema.pick({ password: true });
export const ZDeleteAccountMutationSchema = z.object({
email: z.string().email(),
});
export type TDeleteAccountMutationSchema = z.infer<typeof ZDeleteAccountMutationSchema>;