diff --git a/src/frontend/src/features/support/hooks/useSupport.tsx b/src/frontend/src/features/support/hooks/useSupport.tsx index c7c84278..211d6767 100644 --- a/src/frontend/src/features/support/hooks/useSupport.tsx +++ b/src/frontend/src/features/support/hooks/useSupport.tsx @@ -7,7 +7,7 @@ export const initializeSupportSession = (user: ApiUser) => { if (!Crisp.isCrispInjected()) return const { id, email } = user Crisp.setTokenId(`meet-${id}`) - Crisp.user.setEmail(email) + if (email) Crisp.user.setEmail(email) } export const terminateSupportSession = () => {