Skip to content

Commit b0913ae

Browse files
Merge pull request #38195 from MetaMask/release/13.10.2
release: 13.10.2
2 parents 9dcb499 + 58a726a commit b0913ae

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [13.10.2]
11+
12+
### Fixed
13+
14+
- fixed entry modal closed error (#38188)
15+
1016
## [13.10.1]
1117

1218
### Fixed
@@ -1227,7 +1233,8 @@ authorized by the user.` error until the user fully revoked dapp
12271233
- This changelog was split off with 12.22.0
12281234
- All older changes can be found in [docs/CHANGELOG_older.md](https://github.com/MetaMask/metamask-extension/blob/main/docs/CHANGELOG_older.md)
12291235

1230-
[Unreleased]: https://github.com/MetaMask/metamask-extension/compare/v13.10.1...HEAD
1236+
[Unreleased]: https://github.com/MetaMask/metamask-extension/compare/v13.10.2...HEAD
1237+
[13.10.2]: https://github.com/MetaMask/metamask-extension/compare/v13.10.1...v13.10.2
12311238
[13.10.1]: https://github.com/MetaMask/metamask-extension/compare/v13.10.0...v13.10.1
12321239
[13.10.0]: https://github.com/MetaMask/metamask-extension/compare/v13.9.0...v13.10.0
12331240
[13.9.0]: https://github.com/MetaMask/metamask-extension/compare/v13.8.0...v13.9.0

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "metamask-crx",
3-
"version": "13.10.1",
3+
"version": "13.10.2",
44
"private": true,
55
"repository": {
66
"type": "git",

ui/components/app/shield-entry-modal/shield-entry-modal.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ const ShieldEntryModal = ({
173173
autoFocus={false}
174174
isClosedOnOutsideClick={false}
175175
isClosedOnEscapeKey={false}
176-
onClose={handleOnClose}
176+
onClose={() => handleOnClose()}
177177
className="shield-entry-modal"
178178
data-theme={ThemeType.dark}
179179
>
@@ -185,7 +185,7 @@ const ShieldEntryModal = ({
185185
className="shield-entry-modal__content"
186186
>
187187
<ModalHeader
188-
onClose={handleOnClose}
188+
onClose={() => handleOnClose()}
189189
closeButtonProps={{
190190
'data-testid': 'shield-entry-modal-close-button',
191191
className: 'absolute top-2 right-2',

0 commit comments

Comments
 (0)