Compare commits

...

2 Commits

Author SHA1 Message Date
Yunus M
8c5099e5fa fix: remove duplicate settings tab (#4552)
(cherry picked from commit aa9a3e9349)
2024-02-14 23:06:11 +05:45
Yunus M
c02bfffa4a fix: disable cloud features for oss (#4551)
(cherry picked from commit ab950135ff)
2024-02-14 22:27:44 +05:45
2 changed files with 0 additions and 3 deletions

View File

@@ -24,7 +24,6 @@ export const getRoutes = (
settings.push(...alertChannels(t));
} else {
settings.push(...alertChannels(t));
settings.push(...generalSettings(t));
}
settings.push(...generalSettings(t));

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