File tree Expand file tree Collapse file tree 3 files changed +11
-4
lines changed
ui/components/app/shield-entry-modal Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 11{
22 "name" : " metamask-crx" ,
3- "version" : " 13.10.1 " ,
3+ "version" : " 13.10.2 " ,
44 "private" : true ,
55 "repository" : {
66 "type" : " git" ,
Original file line number Diff line number Diff 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' ,
You can’t perform that action at this time.
0 commit comments