diff options
Diffstat (limited to 'frontend/src/sagas.js')
-rw-r--r-- | frontend/src/sagas.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/src/sagas.js b/frontend/src/sagas.js index ab590a0d..e43e91c2 100644 --- a/frontend/src/sagas.js +++ b/frontend/src/sagas.js @@ -3,12 +3,12 @@ import { call } from 'redux-saga/effects' import createWsConnection from './utils/createWebSocketConnection' -import homeSaga from './sagas/home' +import usernameChoiceSaga from './sagas/usernameChoice' let wsConnection const routes = { *'/'() { - yield homeSaga(wsConnection) + yield usernameChoiceSaga(wsConnection) } } |