Skip to content

Commit

Permalink
refactor: remove debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
mori-dev committed Dec 4, 2016
1 parent 568613f commit d7e4430
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/sagas/qiita_users_saga.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import Api from '../services/api';
export function* getQiitaUsers(action: any): Generator<any, any, any> {
try {
const response: any = yield call(Api.getQiitaUsers, action.payload, action.meta);
console.log('response:::::::::::::::', response.body);
const payload = response.body;
const meta = { statusCode: response.statusCode }
yield put(getQiitaUsersOk(payload, meta));
Expand Down

0 comments on commit d7e4430

Please sign in to comment.