This commit is contained in:
Darshan
2026-01-06 14:03:25 +05:30
parent 6f0da1bdca
commit 13664d44f5
+1 -3
View File
@@ -52,9 +52,7 @@ function getPlausibleDomain(): string {
if (VARS.CONSOLE_PROFILE === ProfileMode.STUDIO) {
return PLAUSIBLE_DOMAINS.STUDIO;
} else {
return isCloud
? PLAUSIBLE_DOMAINS.CLOUD
: PLAUSIBLE_DOMAINS.SELF_HOSTED;
return isCloud ? PLAUSIBLE_DOMAINS.CLOUD : PLAUSIBLE_DOMAINS.SELF_HOSTED;
}
}