IonWarpbotcommented 2 min agoIonWarp Review — PR #42
3 issues| 3 P1
#SevIssueFile
1Open mobile menu is hidden from assistive technologycomponents/mobile-nav.tsx
2Pricing cards clip beyond the 375px viewportapp/pricing/page.tsx
3Sticky banner covers the checkout button on mobilecomponents/checkout.tsx
components/mobile-nav.tsx
24252627
−+
<nav aria-hidden="true"><nav aria-hidden={!isOpen} inert={!isOpen}><a href="/pricing">Pricing</a></nav>
The menu opens visually, but its links remain inaccessible · UX Review
Example browser check at 375px: open the mobile menu, then navigate its links with the keyboard and accessibility tree. aria-hidden stays true while the menu is open. Match visibility and inert state to isOpen.
Suggested fixAI fix prompt