summaryrefslogtreecommitdiff
path: root/frontend/src/containers/HomePage/saga.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/containers/HomePage/saga.js')
-rw-r--r--frontend/src/containers/HomePage/saga.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/containers/HomePage/saga.js b/frontend/src/containers/HomePage/saga.js
index 0fbe8a45..349a1d15 100644
--- a/frontend/src/containers/HomePage/saga.js
+++ b/frontend/src/containers/HomePage/saga.js
@@ -39,11 +39,11 @@ function* validateUsername(socketConnection) {
}
yield put(setUsername(response.userName, response.displayName, response.index))
- yield call(gameBrowserSaga, socketConnection)
return true
}
function* homeSaga(socketConnection) {
+ console.log('here')
let validated = false
do {
const [, usernameValid] = yield [
bgstack15