Conversation
|
🚅 Deployed to the rivet-pr-4462 environment in rivet-frontend
|
PR ReviewThis is a small UI polish PR with a few concerns worth addressing. Accessibility Issue (important)
The Previous and Next buttons are changed to icon-only ( <Button type="button" variant="outline" size="icon" onClick={goToPrev}>
<Icon icon={faArrowLeft} />
</Button>Icon-only buttons must have <Button type="button" variant="outline" size="icon" onClick={goToPrev} aria-label="Previous step">
<Icon icon={faArrowLeft} />
</Button>
<Button type="submit" size="icon" aria-label={isLastVisible ? "Finish" : "Next step"} ...>
<Icon icon={faArrowRight} />
</Button>UX RegressionLoss of "Finish" indicator: The previous code rendered Loss of per-step button text customization: The Help Button LayoutThe Minor Observations
Summary: The accessibility gap on icon-only buttons is the main issue that should be fixed before merging. The UX regression around "Finish" labeling is worth at least a deliberate decision. |

Description
Please include a summary of the changes and the related issue. Please also include relevant motivation and context.
Type of change
How Has This Been Tested?
Please describe the tests that you ran to verify your changes.
Checklist: