chore: fixed review comments

This commit is contained in:
CheetoDa 2024-04-04 11:53:46 +05:30
parent 0c7e63d735
commit f8477981d8
2 changed files with 0 additions and 7 deletions

View File

@ -132,12 +132,6 @@ export default function EnvironmentDetails(): JSX.Element {
) {
return null;
}
if (
selectedModule?.id !== useCases.APM.id &&
environment.id === 'docker'
) {
return null;
}
return (
<Card

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