Description
In src/components/ReviewComment.jsx (line 136), the toggle button does not update its visual appearance to indicate whether the comment is currently hidden or visible. Users can click the button multiple times without any feedback on the current state.
Impact
Poor UX — users cannot tell if their action was registered. Screen reader users may accidentally hide comments without realizing it.
Suggested Fix
Add visual state feedback: change the button text between "Hide" / "Show" or add a checkmark icon when active.
Description
In
src/components/ReviewComment.jsx(line 136), the toggle button does not update its visual appearance to indicate whether the comment is currently hidden or visible. Users can click the button multiple times without any feedback on the current state.Impact
Poor UX — users cannot tell if their action was registered. Screen reader users may accidentally hide comments without realizing it.
Suggested Fix
Add visual state feedback: change the button text between "Hide" / "Show" or add a checkmark icon when active.