import { type UseFormClearErrors } from "https://deno.land/x/netzo@0.3.91/deps/react-hook-form.ts";
Clear the entire form errors.
Examples
Clear all errors
Clear all errors
clearErrors(); // clear the entire form error
clearErrors(["name", "name1"]) // clear an array of fields' error
clearErrors("name2"); // clear a single field error