diff --git a/app/code/Magento/Theme/Model/View/Design.php b/app/code/Magento/Theme/Model/View/Design.php index d012f0117313e..321ed683d3c36 100644 --- a/app/code/Magento/Theme/Model/View/Design.php +++ b/app/code/Magento/Theme/Model/View/Design.php @@ -169,7 +169,7 @@ public function getConfigurationDesignTheme($area = null, array $params = []) $theme = null; $store = isset($params['store']) ? $params['store'] : null; - if ($this->_isThemePerStoveView($area)) { + if ($this->_isThemePerStoreView($area)) { if ($this->_storeManager->isSingleStoreMode()) { $theme = $this->_scopeConfig->getValue( self::XML_PATH_THEME_ID, @@ -197,7 +197,7 @@ public function getConfigurationDesignTheme($area = null, array $params = []) * @param string $area * @return bool */ - private function _isThemePerStoveView($area) + private function _isThemePerStoreView($area) { return $area == self::DEFAULT_AREA; }