fixed mantine forms and menu + improvements on dev mode with vite

This commit is contained in:
Domingo Dirutigliano
2023-06-14 21:49:15 +02:00
parent 2e65d803a2
commit 3f2a1db324
18 changed files with 82 additions and 58 deletions

View File

@@ -60,7 +60,7 @@ function App() {
password:"",
},
validate:{
password: (value) => value !== ""
password: (value) => value !== "" ? null : "Password is required",
}
})