From d73767eff5744d0f4ef6e318d838a4c378be1bfc Mon Sep 17 00:00:00 2001 From: Luke Rodgers Date: Fri, 29 Sep 2023 12:20:39 +0100 Subject: [PATCH] Update Magento2Instance.php --- src/Ampersand/PatchHelper/Helper/Magento2Instance.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ampersand/PatchHelper/Helper/Magento2Instance.php b/src/Ampersand/PatchHelper/Helper/Magento2Instance.php index a09981d7..1ce60edd 100644 --- a/src/Ampersand/PatchHelper/Helper/Magento2Instance.php +++ b/src/Ampersand/PatchHelper/Helper/Magento2Instance.php @@ -184,7 +184,7 @@ private function prepareThemes() } $origTheme = $theme; while ($theme) { - if (str_starts_with($theme->getCode(), 'Hyva/') && $theme->getCode() !== 'Hyva/reset') { + if (str_starts_with($theme->getCode(), 'Hyva/')) { $this->hyvaAllThemes[$origTheme->getCode()] = $origTheme; } $theme = $theme->getParentTheme();