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.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/frontend/src/sagas/home.js b/frontend/src/sagas/home.js
index 89271706..db273d28 100644
--- a/frontend/src/sagas/home.js
+++ b/frontend/src/sagas/home.js
@@ -25,8 +25,6 @@ function* validateUsername(session: SevenWondersSession): * {
}
}
-function* homeSaga(session: SevenWondersSession): * {
+export function* homeSaga(session: SevenWondersSession): * {
yield all([call(sendUsername, session), call(validateUsername, session)]);
}
-
-export default homeSaga;
bgstack15