Next.js Discord

Discord Forum

next-intl zod RHF translations

Unanswered
Cape horse mackerel posted this in #help-forum
Open in Discord
Cape horse mackerelOP
Hello guys, I'm using
https://github.com/gcascio/next-intl-zod to translate zod default error messages, however the translations are not working for my schemas that are defined in turborepo as internal packages packages/common/schemas/getUsersQuerySchema.schema.ts
I can't figure it out why it's not working, my code is built/transpiled via tsup-node --env.NODE_ENV development and maybe the useI18nZodErrors executes after schema and that's why it can't set the translations, I have no idea what's happening.
Does anyone have an idea?
  useI18nZodErrors();

  // does translation property
  const form2 = useForm<TestType>({
    defaultValues: {
      test: "",
    },
    mode: "all",
    resolver: zodResolver(testSchema),
    reValidateMode: "onChange",
  });

  // doesn't translate messages
  const form = useForm<GetUsersQuery>({
    defaultValues,
    mode: "all",
    resolver: zodResolver(getUsersQuerySchema),
    reValidateMode: "onChange",
  });

0 Replies