From b947f823d7a5c02ac66705352869302380d53f93 Mon Sep 17 00:00:00 2001 From: CheetoDa Date: Thu, 4 Apr 2024 12:02:52 +0530 Subject: [PATCH] chore: minor fix --- frontend/src/utils/app.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/src/utils/app.ts b/frontend/src/utils/app.ts index 223272be2e..0ab9e6fca7 100644 --- a/frontend/src/utils/app.ts +++ b/frontend/src/utils/app.ts @@ -14,7 +14,6 @@ export function extractDomain(email: string): string { export const isCloudUser = (): boolean => { const { hostname } = window.location; - return true; return hostname?.endsWith('signoz.cloud'); };