Skip to content
This repository has been archived by the owner on Aug 27, 2024. It is now read-only.

Commit

Permalink
GH-501 remove unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
Ferit Topcu committed Mar 6, 2019
1 parent 2049acb commit 942516f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions client/actions/checks.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
import CheckService from '../service/CheckService'
import { PENDING, SUCCESS, ERROR } from '../actions/status'
import { requestReposIfNeeded } from '../actions/repos'

export const PUT_CHECK = Symbol('put check')
export const DELETE_CHECK = Symbol('delete check')
export const REFRESH_TOKEN = Symbol('refresh token')
export const RELOAD_REPO_DETAIL = Symbol ('reload repo detail')


function putCheck(status, payload = null) {
Expand Down
1 change: 0 additions & 1 deletion client/reducers/repos/checks.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ export default function checks(state = { isRefreshingToken: false, error: false}
case PENDING:
return {...state, isRefreshingToken: true}
case SUCCESS:
// console.log(action.payload);
return {
...state,
isRefreshingToken: false,
Expand Down

0 comments on commit 942516f

Please sign in to comment.