summaryrefslogtreecommitdiff
path: root/frontend/src/sagas.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/sagas.js')
-rw-r--r--frontend/src/sagas.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/frontend/src/sagas.js b/frontend/src/sagas.js
index 40f8a587..d9069051 100644
--- a/frontend/src/sagas.js
+++ b/frontend/src/sagas.js
@@ -1,5 +1,4 @@
// @flow
-import type { History } from 'react-router';
import { call, fork } from 'redux-saga/effects';
import { connectToGame, SevenWondersSession } from './api/sevenWondersApi';
import { errorHandlingSaga } from './sagas/errors';
@@ -7,7 +6,7 @@ import { gameBrowserSaga } from './sagas/gameBrowser';
import { homeSaga } from './sagas/home';
import { lobbySaga } from './sagas/lobby';
-export function* rootSaga(history: History): * {
+export function* rootSaga(): * {
let sevenWondersSession: SevenWondersSession | void;
try {
sevenWondersSession = yield call(connectToGame);
bgstack15