Skip to content

Commit 288cbdc

Browse files
authored
Merge branch 'master' into master
2 parents ca72d4d + e31969e commit 288cbdc

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

.github/workflows/continuous_integration.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ jobs:
3434
- uses: actions/[email protected]
3535
with:
3636
python-version: '3.11'
37+
- name: Install click 8.2.2 until bug in 8.3.0 is resolved
38+
run: pip install click==8.2.2
3739
- name: Install script dependencies
3840
run: pip install changelogged==0.11.3
3941
- name: Validate Changelog

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
#### Added
1111
- Add isKlaviyoEnabled to product/viewed.phtml.
12+
#### Fixed
13+
- Ensure Controller/Checkout/Email.php loads proper classes on frontend
1214

1315
### [4.4.1] - 2025-09-15
1416

Controller/Checkout/Email.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class Email extends \Magento\Framework\App\Action\Action
1515
protected $_objectManager;
1616

1717
public function __construct(
18-
\Magento\Backend\App\Action\Context $context,
18+
\Magento\Framework\App\Action\Context $context,
1919
\Magento\Framework\Controller\Result\JsonFactory $resultJsonFactory
2020
) {
2121
parent::__construct($context);

0 commit comments

Comments
 (0)