From 255aac00a9b2205ca9c477bb4d289d23af64ee30 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Thu, 5 May 2016 13:35:51 +0100 Subject: [PATCH] Remove debug logs --- app/components/projects/ProjectList.js | 1 - app/middleware/tokenInjector.js | 2 -- app/reducers/allProjects.js | 1 - 3 files changed, 4 deletions(-) diff --git a/app/components/projects/ProjectList.js b/app/components/projects/ProjectList.js index 19820e3..e09f3a8 100644 --- a/app/components/projects/ProjectList.js +++ b/app/components/projects/ProjectList.js @@ -56,7 +56,6 @@ export class ProjectList extends React.Component { if (!this.props.token) { return null; // If there's no token, we can't do anything, so wait } - console.log('HAS TOKEN', this.props.userDetails.token); return ( next => action => { } const TOKEN = store.getState().user.get('token'); - console.log('GOT TOKEN', TOKEN); if (TOKEN) { action[CALL_API].endpoint = action[CALL_API].endpoint.query('circle-token', TOKEN ); - console.log('SET URL TO', action[CALL_API].endpoint.toString()); } action[CALL_API].endpoint = action[CALL_API].endpoint.toString(); // COnvert url object to string diff --git a/app/reducers/allProjects.js b/app/reducers/allProjects.js index 98e0386..5837470 100644 --- a/app/reducers/allProjects.js +++ b/app/reducers/allProjects.js @@ -2,7 +2,6 @@ import * as actions from '../actions'; import { Map } from 'immutable'; export default function allProjects(state = Map(), action) { - console.log(action.type); if (action.type === actions.GET_PROJECTS.SUCCESS) { return Map(action.payload); }