From ab950135ffd7cd679ee417b9363cff07558ecdaf Mon Sep 17 00:00:00 2001 From: Yunus M Date: Wed, 14 Feb 2024 22:00:17 +0530 Subject: [PATCH] fix: disable cloud features for oss (#4551) --- frontend/src/utils/app.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/frontend/src/utils/app.ts b/frontend/src/utils/app.ts index d0b859d108..0ab9e6fca7 100644 --- a/frontend/src/utils/app.ts +++ b/frontend/src/utils/app.ts @@ -15,8 +15,6 @@ export function extractDomain(email: string): string { export const isCloudUser = (): boolean => { const { hostname } = window.location; - return true; - return hostname?.endsWith('signoz.cloud'); };