diff --git a/app/Models/Account.php b/app/Models/Account.php index adf95c62086f..c2e099bf8366 100644 --- a/app/Models/Account.php +++ b/app/Models/Account.php @@ -291,7 +291,7 @@ class Account extends BaseModel public function isPaid(): bool { - return Ninja::isNinja() ? ($this->isPaidHostedClient() && !$this->isTrial()) : $this->hasFeature(self::FEATURE_WHITE_LABEL); + return Ninja::isNinja() ? $this->isPaidHostedClient() : $this->hasFeature(self::FEATURE_WHITE_LABEL); } public function isPremium(): bool