auto-form icon indicating copy to clipboard operation
auto-form copied to clipboard

Please add noValidate to the form to disable the default html form validation

Open kgeekInCominty opened this issue 6 months ago • 0 comments

 <form
          **noValidate**
          onSubmit={(e) => {
            form.handleSubmit(onSubmit)(e);
          }}
          className={cn("space-y-5", className)}
        >
          <AutoFormObject schema={objectFormSchema} form={form} dependencies={dependencies} fieldConfig={fieldConfig} />

          {renderChildren}
        </form>

kgeekInCominty avatar Aug 12 '24 11:08 kgeekInCominty