Move from prettier-eslint to eslint-plugin-prettier, update dependencies
This commit is contained in:
@@ -1,14 +1,12 @@
|
||||
import {
|
||||
all, call, cancel, fork, take,
|
||||
} from 'redux-saga/effects';
|
||||
import { all, call, cancel, fork, take } from 'redux-saga/effects';
|
||||
|
||||
import watchers from './watchers';
|
||||
import { goToRootService } from './services';
|
||||
import { setAccessToken } from '../../utils/access-token-storage';
|
||||
import ActionTypes from '../../constants/ActionTypes';
|
||||
|
||||
export default function* () {
|
||||
const watcherTasks = yield all(watchers.map((watcher) => fork(watcher)));
|
||||
export default function*() {
|
||||
const watcherTasks = yield all(watchers.map(watcher => fork(watcher)));
|
||||
|
||||
const {
|
||||
payload: { accessToken },
|
||||
|
||||
Reference in New Issue
Block a user