diff --git a/app/Models/Account.php b/app/Models/Account.php index 32b81723e4a2..382eec8692ee 100644 --- a/app/Models/Account.php +++ b/app/Models/Account.php @@ -296,6 +296,7 @@ class Account extends BaseModel public function isPremium(): bool { + // return true; return Ninja::isHosted() && $this->isPaidHostedClient() && !$this->isTrial() && Carbon::createFromTimestamp($this->created_at)->diffInMonths() > 2; }