From 1ff3cd0f5577e13bc35cb31900f149c368113e5e Mon Sep 17 00:00:00 2001 From: Patrick Fic Date: Thu, 2 Jul 2020 16:08:42 -0700 Subject: [PATCH] Missed breaking change in last commit. --- client/src/redux/user/user.sagas.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/client/src/redux/user/user.sagas.js b/client/src/redux/user/user.sagas.js index 049c0a221..6fbd762a4 100644 --- a/client/src/redux/user/user.sagas.js +++ b/client/src/redux/user/user.sagas.js @@ -68,7 +68,6 @@ export function* isUserAuthenticated() { yield put(signInFailure(error)); } } - export function* onSignOutStart() { yield takeLatest(UserActionTypes.SIGN_OUT_START, signOutStart); } @@ -149,7 +148,7 @@ export function* onSignInSuccess() { } export function* signInSuccessSaga({ payload }) { - LogRocket.identify(user.email); + LogRocket.identify(payload.email); yield put(setInstanceId(payload.uid)); }