chore: minor fix

This commit is contained in:
CheetoDa 2024-04-04 12:02:52 +05:30
parent 1a14cc305c
commit b947f823d7

View File

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