Skip to content

Complete React Todo app - #1336

Open
devsync25 wants to merge 3 commits into
mate-academy:masterfrom
devsync25:develop
Open

Complete React Todo app#1336
devsync25 wants to merge 3 commits into
mate-academy:masterfrom
devsync25:develop

Conversation

@devsync25

Copy link
Copy Markdown

@brespect brespect left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Almost done, but let's fix the UI input focus:
Image

Comment thread src/App.tsx
Comment on lines +195 to +226
<nav className="filter" data-cy="Filter">
<a
href="#/"
className={`filter__link ${filter === 'all' ? 'selected' : ''}`}
data-cy="FilterLinkAll"
onClick={() => setFilter('all')}
>
All
</a>

<a
href="#/active"
className={`filter__link ${
filter === 'active' ? 'selected' : ''
}`}
data-cy="FilterLinkActive"
onClick={() => setFilter('active')}
>
Active
</a>

<a
href="#/completed"
className={`filter__link ${
filter === 'completed' ? 'selected' : ''
}`}
data-cy="FilterLinkCompleted"
onClick={() => setFilter('completed')}
>
Completed
</a>
</nav>

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

simplify this using Array.map()

@devsync25
devsync25 requested a review from brespect August 25, 2026 19:36

@brespect brespect left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

UI still not fixed

@devsync25
devsync25 requested a review from brespect August 26, 2026 09:42

@roman-mirzoian roman-mirzoian left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The demo link still points to the old version—don't forget to update the deployment and double-check for yourself that the updated version opens when you click your link:
Image

@roman-mirzoian roman-mirzoian left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I can see that the deployment has definitely been updated, but the app itself still doesn't look like it's been fixed. Please make sure that the demo link opens the fixed app before submitting the next review request
Image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants