SearchResults
mp1pro opened this issue · 0 comments
mp1pro commented
Within the search function App.js, you are setting the returned values to tracks instead of searchResults.
Spotify.search(term).then(tracks => {
this.setState({tracks: tracks});
});
should be
Spotify.search(term).then(tracks => {
this.setState({searchResults: tracks});
});