out-fox-it / aj-ty-spojka

Web application that connects programmers based on their experience, interests and the type of person they are looking for (mentor, buddy, mentee) through matching and contact sharing.
GNU General Public License v3.0
0 stars 0 forks source link

Add option to show/hide your password in Login and Registration #51

Closed agnes97 closed 3 years ago

agnes97 commented 3 years ago

Based on: https://dev.to/detoner777/show-hide-password-on-toggle-in-react-hooks-1lph

agnes97 commented 3 years ago
 const togglePasswordVisiblity = () => {
    setPasswordShown(passwordShown ? false : true);
  };

Can be refactored to:

 const togglePasswordVisiblity = () => {
    setPasswordShown(!setPasswordShown);
  };