-
-
Notifications
You must be signed in to change notification settings - Fork 229
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement feedback from QA #4297
Conversation
This stack of pull requests is managed by Graphite. Learn more about stacking. |
c9205a4
to
51df977
Compare
Quick links (staging server):
Login:
SVG tester:Number of differences (default views): 2 (2c0d60) ❌ Edited: 2024-12-19 16:22:59 UTC |
54da746
to
966fc3d
Compare
e2a89a8
to
387f660
Compare
387f660
to
dbb55af
Compare
84e67eb
to
04ccc9e
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks good!
just a few tiny things that we should deal with before merging, I think 🙂
import { useDonors } from "../utils.js" | ||
|
||
export default function Donors({ className }: { className?: string }) { | ||
const donors = useDonors() | ||
if (!donors) return null | ||
|
||
const donorsByLetter = groupBy(donors, (donor) => donor[0]) | ||
const donorsByLetter = groupBy(donors, (donor) => | ||
removeDiacritics(donor[0].toUpperCase()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I noticed this the first time around and though "oh that's cool, I guess we're embracing unicode multiculturalism" 😅
Guess someone else realized it was a bit silly 👍
Looks like it's not handling Ø though
And maybe we should just have a single "Other" heading at the bottom, because otherwise we'll get a new heading for each non-latin script name at the bottom.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Both Marwa and I think this is fine (for now). The new code groups Í and I together, because they differ in diacritic and are ortherwise the same characters, but O with the slash is a different character than normal O. Same as e.g. Q.
04ccc9e
to
d4e247b
Compare
b17e3d1
to
6100a7b
Compare
Setting manual margins is fragile. Remove them to fix bad alignment in about pages, since the icon is vertically aligned already. It looks good to me as is, but if we want to change the alignment, we should change the SVG instead.
6100a7b
to
582de9c
Compare
No description provided.