The linter, which is built in, caught these errors and logged them to the console (available both on the terminal and in the browser). They are very minor and can easily be cleaned up:
webpackHotDevClient.js:138 ./src/index.js
Line 1: 'Component' is defined but never used no-unused-vars
printWarnings @ webpackHotDevClient.js:138
webpackHotDevClient.js:138 ./src/util/Spotify.js
Line 4: 'urlAccessToken' is assigned a value but never used no-unused-vars
Line 5: 'urlExpiresIn' is assigned a value but never used no-unused-vars
Line 59: 'playlistId' is assigned a value but never used no-unused-vars
printWarnings @ webpackHotDevClient.js:138
Here is what the solution Spotify.js looks like in case you're curious
The linter, which is built in, caught these errors and logged them to the console (available both on the terminal and in the browser). They are very minor and can easily be cleaned up:
Here is what the solution Spotify.js looks like in case you're curious