- 000
TypeError: images is undefined
Pet
src/Pet.jsx:5:6
2 | const { name, animal, breed, images, location, id } = props;
3 |
4 | let hero = "http://pets-images.dev-apis.com/pets/none.jpg";
5 | if (images.length) {
| ^ 6 | hero = images[0];
7 | }
8 |
removing
if (images.length) {
hero = images[0];...