Skip to content

Commit ee91c1f

Browse files
albsbzalbsbz
andauthored
th-137: * disable native html email validation (#152)
Co-authored-by: albsbz <[email protected]>
1 parent 7facbf0 commit ee91c1f

File tree

1 file changed

+1
-1
lines changed
  • frontend/src/libs/components/form

1 file changed

+1
-1
lines changed

frontend/src/libs/components/form/form.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ const Form = <T extends FieldValues = FieldValues>({
7878
};
7979

8080
return (
81-
<form onSubmit={handleFormSubmit} className={styles.form}>
81+
<form onSubmit={handleFormSubmit} className={styles.form} noValidate>
8282
{createInputs()}
8383
<Button type="submit" label={btnLabel ?? 'Submit'} isFullWidth />
8484
</form>

0 commit comments

Comments
 (0)