-
Notifications
You must be signed in to change notification settings - Fork 198
[Don't Pull] MR for review purposes #60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
…ring when nav bar is clicked
Added image visuals
Added my video walklthrough
src/components/MovieList.jsx
Outdated
| // for sidebar home | ||
| const homePage = () => { | ||
| setSearchQuery(''); | ||
| setViewMode('all'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lets add a comment as to why we set the view Mode here to 'all'
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added a more explanatory comment on why
| }; | ||
|
|
||
| // for sidebar home | ||
| const homePage = () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we rename this, because its for the side bar on the homepage. This way it better represents what we are setting up for.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changed the comment to reflect where the homepage is located for better clarity
src/components/MovieCard.jsx
Outdated
| }} | ||
| > | ||
| <img src= {hasWatched ? '../assets/eye-icon.jpg' : '../assets/close-eye-icon.jpg'} alt=" Watch Status" /> | ||
| {/* <img src = {eyeIcon}/> */} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why are lines 36-38 commented out?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I couldn't find the commented reference you mentioned here in my coding environment, I'm thinking the changes were already cleaned up.
However, the commented lines was updated to a more workable way of accessing my icon for watch and not watch display as the former wasn't displaying the icon on my webpage
|
In general great job! The code looks good overall. Some general tips:
|
|
Thank you so much for the Feedback! |
This MR is for reviewing the project code