fix: disable cloud features for oss (#4551)

This commit is contained in:
Yunus M 2024-02-14 22:00:17 +05:30 committed by GitHub
parent 7ec25b4f62
commit ab950135ff
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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');
};