diff options
Diffstat (limited to 'frontend/src/sagas.js')
-rw-r--r-- | frontend/src/sagas.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/sagas.js b/frontend/src/sagas.js index 457dac04..40f8a587 100644 --- a/frontend/src/sagas.js +++ b/frontend/src/sagas.js @@ -3,8 +3,8 @@ import type { History } from 'react-router'; import { call, fork } from 'redux-saga/effects'; import { connectToGame, SevenWondersSession } from './api/sevenWondersApi'; import { errorHandlingSaga } from './sagas/errors'; -import { homeSaga } from './sagas/home'; import { gameBrowserSaga } from './sagas/gameBrowser'; +import { homeSaga } from './sagas/home'; import { lobbySaga } from './sagas/lobby'; export function* rootSaga(history: History): * { |