vercel / next-learn

Learn Next.js Starter Code
https://next-learn-dashboard.vercel.sh/
MIT License
3.39k stars 1.79k forks source link

Chapter 6: Error while customers table seeding #762

Closed yuliya-d98 closed 1 week ago

yuliya-d98 commented 1 week ago

While running "pnpm seed" in Chapter 6 I've got this error:

image

In placeholder-data.js file in 89 row we are trying to get customers[7].id, but customers array's length is 7, so last element is customers[6]

Purposed solution: Replacing customers[7].id with customers[6].id

leerob commented 1 week ago

Fixed here https://github.com/vercel/next-learn/pull/764.