diff --git a/src/Features/TelescopeTags.php b/src/Features/TelescopeTags.php index 89709720..c1d4450f 100644 --- a/src/Features/TelescopeTags.php +++ b/src/Features/TelescopeTags.php @@ -14,6 +14,13 @@ class TelescopeTags implements Feature /** @var callable User-specific callback that returns tags. */ protected $callback; + public function __construct() + { + $this->callback = function ($entry) { + return []; + }; + } + public function bootstrap(TenantManager $tenantManager): void { if (! class_exists(Telescope::class)) {