summaryrefslogtreecommitdiff
path: root/frontend/src/sagas.js
diff options
context:
space:
mode:
authorVictor Chabbert <chabbertvi@eisti.eu>2017-01-21 12:30:07 +0100
committerVictor Chabbert <chabbertvi@eisti.eu>2017-01-21 12:30:07 +0100
commit267a122951a1959dcbd111a77dccdcb78eccefa4 (patch)
treebae29797c28dc8c1bb87f983359e669ef5887e07 /frontend/src/sagas.js
parentMove babel polyfill to dev dependencies (diff)
downloadseven-wonders-267a122951a1959dcbd111a77dccdcb78eccefa4.tar.gz
seven-wonders-267a122951a1959dcbd111a77dccdcb78eccefa4.tar.bz2
seven-wonders-267a122951a1959dcbd111a77dccdcb78eccefa4.zip
Better implementation of username choice
Diffstat (limited to 'frontend/src/sagas.js')
-rw-r--r--frontend/src/sagas.js4
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)
}
}
bgstack15