diff --git a/app/Models/User.php b/app/Models/User.php index 9c0550d05ae1..b7255d721b86 100644 --- a/app/Models/User.php +++ b/app/Models/User.php @@ -496,11 +496,6 @@ class User extends Authenticatable public function eligibleForMigration() { - // Not ready to show to hosted users - if (Utils::isNinjaProd()) { - return false; - } - return is_null($this->public_id) || $this->public_id == 0; } }