diff --git a/src/SwitchManager.php b/src/SwitchManager.php index badad37..e9a0797 100644 --- a/src/SwitchManager.php +++ b/src/SwitchManager.php @@ -21,6 +21,6 @@ public function __construct(protected ConfigInterface $config) public function isEnable(string $key): bool { - return (bool) $this->config->get("telescope.enable.{$key}", true); + return (bool) $this->config->get("telescope.enable.{$key}", false); } }