remove company size logic from the code

This commit is contained in:
Martin McKeaveney 2021-09-28 17:18:56 +01:00
parent 2895af8ec1
commit 1ef55a2419
1 changed files with 7 additions and 9 deletions

View File

@ -54,15 +54,13 @@ export function createAuthStore() {
if (user) { if (user) {
analytics.activate().then(() => { analytics.activate().then(() => {
analytics.identify(user._id, user) analytics.identify(user._id, user)
if (user.size === "100+" || user.size === "10000+") { analytics.showChat({
analytics.showChat({ email: user.email,
email: user.email, created_at: user.createdAt || Date.now(),
created_at: user.createdAt || Date.now(), name: user.name,
name: user.name, user_id: user._id,
user_id: user._id, tenant: user.tenantId,
tenant: user.tenantId, })
})
}
}) })
} }
} }