Closed andersganander closed 3 months ago
Reviews were not shown on Albums page, though they could be seen when calling the api directly.
The solution was to change the way the reviews were set using the setReviews in AlbumPage.js. setReviews({ results: [reviews] }); was changed to setReviews(reviews);
setReviews({ results: [reviews] });
setReviews(reviews);
Reviews were not shown on Albums page, though they could be seen when calling the api directly.