Skip to content

Commit

Permalink
Removing old debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
jaedb committed Oct 10, 2023
1 parent 5bef256 commit 14cbdf1
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion src/js/services/core/middleware.js
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,6 @@ const CoreMiddleware = (function () {

case 'LOAD_LIBRARY':
store.dispatch(uiActions.startLoading(action.uri, action.uri));
console.debug(action);
const fetchLibrary = () => {
switch (uriSource(action.uri)) {
case 'spotify':
Expand Down
1 change: 0 additions & 1 deletion src/js/services/core/reducer.js
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,6 @@ export default function reducer(core = {}, action) {
* */

case 'SEARCH_RESULTS_LOADED': {
console.debug(action)
return {
...core,
search_results: {
Expand Down
2 changes: 0 additions & 2 deletions src/js/views/Discover/FeaturedPlaylists.js
Original file line number Diff line number Diff line change
Expand Up @@ -197,8 +197,6 @@ class FeaturedPlaylists extends React.Component {
},
];

console.debug({ source, view })

const options = (
<>
<FilterField
Expand Down
1 change: 0 additions & 1 deletion src/js/views/Discover/Recommendations.js
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,6 @@ class Recommendations extends React.Component {
if (!uri) return;

const seeds = uri.replace('iris:discover:', '').split(',').map((seed) => decodeUri(seed));
console.debug({ uri, uriProp, seeds })
loadUris(seeds);
this.setState(
{ seeds },
Expand Down

0 comments on commit 14cbdf1

Please sign in to comment.