feat:resolve issues 465 463 462 464 - #589
Merged
Merged
Conversation
|
@therealjhay Great news! 🎉 Based on an automated assessment of this PR, the linked Wave issue(s) no longer count against your application limits. You can now already apply to more issues while waiting for a review of this PR. Keep up the great work! 🚀 |
|
Auto-review failed (API error). Leaving PR for human review. |
Feyisara2108
self-requested a review
July 28, 2026 20:15
Feyisara2108
approved these changes
Jul 28, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Closes #465 Reduced-motion for confetti & toasts
Created
frontend/src/hooks/usePrefersReducedMotion.ts
— a shared, reactive hook that listens to the prefers-reduced-motion media query.
Updated
Navbar.tsx
— removed the inline hook definition and imported the shared one.
Updated
DonateModal.tsx
— replaced the one-shot window.matchMedia check with the reactive usePrefersReducedMotion hook, so confetti is skipped (and stays skipped) whenever the user prefers reduced motion.
Closes #463 Accessible emoji links & countdown
Updated
CampaignDetailsClient.tsx
:
Website link: added aria-label="Campaign website (opens in new tab)" + around the 🌐 emoji.
Twitter link: added aria-label="Campaign Twitter profile (opens in new tab)" + hidden emoji span.
Countdown: added role="status" and a computed aria-label like "Time remaining: 3 days, 2 hours, 10 minutes" so screen readers announce meaningful text instead of raw emoji.
Closes #462 Skip-link target
Updated
layout.tsx
:
Removed the orphan empty
Wrapped {children} in — skip-link now lands on the actual page content.
Closes #464 Focus-visible on explore tabs
Updated
explore/page.tsx
:
Changed focus:outline-none → focus-visible:outline-none on the status tab buttons. The focus-visible:ring-2 focus-visible:ring-primary ring is now properly surfaced for keyboard users while pointer-based focus (click/tap) remains clean.
6:47 PM