You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now there is no validation check for the album name, which means a user can create an album with any number of characters.
Solution
check whether the length of the album name is between 1 and 16 characters.
Idea
Implement an if statement inside src/components/CreateAlbumModal.js before creating an album and check for the length of the album name, if it is more than 16 characters show a warning and not create the album.
Anyone who wants to implement this please let me know by leaving a comment below. I'll assign it to you
The text was updated successfully, but these errors were encountered:
Problem
Right now there is no validation check for the album name, which means a user can create an album with any number of characters.
Solution
check whether the length of the album name is between 1 and 16 characters.
Idea
Implement an if statement inside
src/components/CreateAlbumModal.js
before creating an album and check for the length of the album name, if it is more than 16 characters show a warning and not create the album.Anyone who wants to implement this please let me know by leaving a comment below. I'll assign it to you
The text was updated successfully, but these errors were encountered: