summaryrefslogtreecommitdiff
path: root/frontend/src/sagas/home.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/sagas/home.js')
-rw-r--r--frontend/src/sagas/home.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/frontend/src/sagas/home.js b/frontend/src/sagas/home.js
index 328102fb..705a7a40 100644
--- a/frontend/src/sagas/home.js
+++ b/frontend/src/sagas/home.js
@@ -5,7 +5,8 @@ import { eventChannel } from 'redux-saga';
import { all, apply, call, put, take } from 'redux-saga/effects';
import type { ApiPlayer } from '../api/model';
import type { SevenWondersSession } from '../api/sevenWondersApi';
-import { actions, types } from '../redux/players';
+import { actions } from '../redux/actions/players';
+import { types } from '../redux/actions/players';
function* sendUsername(session: SevenWondersSession): SagaIterator {
while (true) {
bgstack15