diff --git a/frontend/src/components/Signup.jsx b/frontend/src/components/Signup.jsx index a64faa7..a862269 100644 --- a/frontend/src/components/Signup.jsx +++ b/frontend/src/components/Signup.jsx @@ -34,7 +34,12 @@ function Signup() { }; const validateForm = () => { - if (email === '' || password === '' || confirmPassword === '' || name === '') { + if ( + email === '' || + password === '' || + confirmPassword === '' || + name === '' + ) { toast.update(toastId, { render: 'Please fill all the fields', type: 'error',