summaryrefslogtreecommitdiff
path: root/frontend/src/sagas/errors.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/sagas/errors.js')
-rw-r--r--frontend/src/sagas/errors.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/frontend/src/sagas/errors.js b/frontend/src/sagas/errors.js
index eece98c8..c5d68e62 100644
--- a/frontend/src/sagas/errors.js
+++ b/frontend/src/sagas/errors.js
@@ -1,10 +1,10 @@
// @flow
-import { toastr } from 'react-redux-toastr'
-import type { Channel } from 'redux-saga'
-import { eventChannel } from 'redux-saga'
-import { apply, cancelled, take } from 'redux-saga/effects'
-import type { ApiError } from '../api/model'
-import type { SevenWondersSession } from '../api/sevenWondersApi'
+import { toastr } from 'react-redux-toastr';
+import type { Channel } from 'redux-saga';
+import { eventChannel } from 'redux-saga';
+import { apply, cancelled, take } from 'redux-saga/effects';
+import type { ApiError } from '../api/model';
+import type { SevenWondersSession } from '../api/sevenWondersApi';
export default function* errorHandlingSaga(session: SevenWondersSession): * {
const errorChannel: Channel<ApiError> = yield eventChannel(session.watchErrors());
bgstack15