DEV Community

Discussion on: 🍝 Cooking a Deliveroo clone with Next.js (React), GraphQL, Strapi and Stripe - 🍔 Dishes list (part 3/7)

Collapse
 
gameoverwill profile image
Wilfredo PĂ©rez

Hey Ryan, one last thing in this part. I got and error in the last part, and It was because the

<Card style={{ width: "30%", margin: "0 10px" }}>

didn't have the key prop, so when I added it the error gone.

<Card style={{ width: "30%", margin: "0 10px" }} key = { res.id }>

Now I go to the next part. Thanks for this awesome tutorial.

Thread Thread
 
ryanaz profile image
Ryan

Good find Wilfredo, I'll add that to the code!