diff --git a/vendor/open-function-computers-llc/rad-theme-engine/src/Site.php b/vendor/open-function-computers-llc/rad-theme-engine/src/Site.php index 171deeb..6b3deb7 100644 --- a/vendor/open-function-computers-llc/rad-theme-engine/src/Site.php +++ b/vendor/open-function-computers-llc/rad-theme-engine/src/Site.php @@ -23,7 +23,7 @@ class Site public static function getInstance(): Site { if (self::$instance === null) { - self::$instance = new self(); + self::$instance = new self([]); } return self::$instance; }