summaryrefslogtreecommitdiff
path: root/frontend/src/sagas/usernameChoice.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/sagas/usernameChoice.js')
-rw-r--r--frontend/src/sagas/usernameChoice.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/sagas/usernameChoice.js b/frontend/src/sagas/usernameChoice.js
index d0d0cdea..e9812c72 100644
--- a/frontend/src/sagas/usernameChoice.js
+++ b/frontend/src/sagas/usernameChoice.js
@@ -2,7 +2,7 @@ import { call, take, put } from 'redux-saga/effects'
import { eventChannel } from 'redux-saga'
import { push } from 'react-router-redux'
-import { actions, types } from '../redux/user'
+import { actions, types } from '../redux/players'
function usernameValidationChannel(socket) {
return eventChannel(emitter => {
bgstack15