-
Notifications
You must be signed in to change notification settings - Fork 1
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
Fix header and list-of-links structure in footer #2204
Conversation
src/app/components/Footer/index.tsx
Outdated
function LinkList({children}: React.PropsWithChildren<{}>) { | ||
return ( | ||
<Styled.LinkListWrapper> | ||
{React.Children.toArray(children).map((c) => <li>{c}</li>)} |
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 one doesn't set the key property, unlike the other PR
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.
Oh, yeah. No warning on the Rex system for that. The set of children won't be changing, but I pushed a use-index-as-key update.
6ed788a
to
0e1d986
Compare
9e4dd5f
to
56a2d22
Compare
df9ef59
to
76a19e7
Compare
712ddb0
to
45b9171
Compare
45b9171
to
cefa592
Compare
@RoyEJohnson Lint is failing in this PR even after a re-run. Could you please look into it. |
8f501a7
to
05f9011
Compare
DISCO-44