feat: corrected reference to constants

This commit is contained in:
johnsoncherian 2025-04-28 15:41:06 +05:30
parent e37733cabd
commit f42f9526b7

View file

@ -287,7 +287,7 @@ export default class LicenseBase {
public get serverSideGlobal(): boolean {
if (this.IsBasicPlan) {
return !!BASIC_PLAN_TERMS.features?.serverSideGlobal;
return !!this.BASIC_PLAN_TERMS.features?.serverSideGlobal;
}
return this._isServerSideGlobal;
}