diff -r 6f3078f7fd47 -r be36eed5e6e0 client/src/sagas/syncSaga.js --- a/client/src/sagas/syncSaga.js Thu Aug 03 09:44:37 2017 +0200 +++ b/client/src/sagas/syncSaga.js Thu Aug 03 17:33:00 2017 +0200 @@ -1,7 +1,8 @@ import { put, take, all, select, spawn, race, call, fork} from 'redux-saga/effects' import { delay } from 'redux-saga'; import * as types from '../constants/actionTypes'; -import { getLastSync, getOnline } from './selectors'; +import { getLastSync } from '../selectors/syncSelectors'; +import { getOnline } from '../selectors/authSelectors'; import moment from 'moment'; import { startSynchronize, endSynchronize, updateLastSync } from '../actions/syncActions'; import { forceSync } from '../actions/networkActions';