This commit is contained in:
Patrick Fic
2022-03-02 15:26:18 -08:00
parent c0220f0ca2
commit b98bfe566a
2 changed files with 14 additions and 7 deletions

View File

@@ -109,12 +109,14 @@ export default function VendorsFormComponent({
<Form.Item
label={t("vendors.fields.email")}
rules={[
{
type: "email",
message: t("general.validation.invalidemail"),
},
]}
rules={
[
// {
// type: "email",
// message: t("general.validation.invalidemail"),
// },
]
}
name="email"
>
<FormItemEmail email={getFieldValue("email")} />