-
-
Notifications
You must be signed in to change notification settings - Fork 39
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
Use Vite instead of CRA #663
Conversation
@@ -46,7 +46,7 @@ const Donate = () => { | |||
{t("settings.text1")} | |||
<br /> | |||
<br /> | |||
<Typography variant="h6">{t("settings.thank_you")} ❤️</Typography> |
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.
This was necessary as React was throwing "h6 cannot be nested inside p"
@alexfauquette we still have very big chunks :)
|
@@ -56,7 +56,7 @@ const OpenFoodFacts = () => { | |||
<Box> | |||
{socialMedia.map((media) => { | |||
return ( | |||
<IconButton href={media.link} target="_blank"> | |||
<IconButton key={media.link} href={media.link} target="_blank"> |
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.
Thanks, I spent some time wondering where was missing key
😁
After merging #656 the chunks are smaller!
|
What
Depends on