mp1pro/jamming

SearchResults

mp1pro opened this issue · 0 comments

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});
    });