learn-co-curriculum / react-hooks-practice-toy-tales

2 stars 1.9k forks source link

Rex image is not found (404 error) #8

Open kerryoncoding opened 1 year ago

kerryoncoding commented 1 year ago

Canvas Link

https://learning.flatironschool.com/courses/6549/pages/practice-challenge-toy-tales?module_item_id=558066

Concern

Items fetched with get request load, except for REX image.

Additional Context

No response

Suggested Changes

update image link

RedBeret commented 9 months ago

To correct you need to remove the text after .png

This is what we have
{ "id": 5, "name": "Rex", "image": "https://static.wikia.nocookie.net/pixar/images/a/a8/Rex_%28Toy_Story%29.png/revision/latest/scale-to-width-down/377?cb=20210221010941", "likes": 1 },

This is what is needed to correct the issue { "id": 5, "name": "Rex", "image": "https://static.wikia.nocookie.net/pixar/images/a/a8/Rex_%28Toy_Story%29.png", "likes": 1 },