Pass generator app Using React/SCSS/Vite

Please log in to post a comment
Log in with GitHubCommunity feedback
- @artemkotko14
Hi!
Great job on completing this challenge!
A few things I'd like to draw your attention to:
- On a mobile size screen if big length of a password is chosen (for example 20) copy image overflows its container.
- Trailing slash on void elements has no effect and interacts badly with unquoted attribute values. For example
/>
here:
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
- in your app.jsx
import TextField from './components/TextField/ index';
has extra space before 'index' which might cause an error
- Typo in state setter function:
const [passwordLength, setPasswordLenth] = useState(0);
setPasswordLenth has a typo — it should be setPasswordLength.
Everything else looks good!
Keep on coding!
Join our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord