From 802e9458291568658ca61d8bc25fbb196d126b0b Mon Sep 17 00:00:00 2001 From: Patrick Fic Date: Mon, 1 May 2023 15:39:51 -0700 Subject: [PATCH] Fresh Chat ID. --- client/src/redux/user/user.sagas.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/redux/user/user.sagas.js b/client/src/redux/user/user.sagas.js index c87eed925..7246a5003 100644 --- a/client/src/redux/user/user.sagas.js +++ b/client/src/redux/user/user.sagas.js @@ -209,7 +209,7 @@ export function* signInSuccessSaga({ payload }) { window.fcWidget.setExternalId(payload.email); const names = payload.displayName.split(" "); window.fcWidget.user.setProperties({ - firstName: names[0] + "Update", + firstName: names[0], lastName: names.slice(1, names.length).join(" "), email: payload.email, });