Skip to content

Commit c699439

Browse files
authored
Merge pull request #25008 from MetaMask/v11.16.5
Version v11.16.5
2 parents 47c8b68 + 42926a4 commit c699439

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

CHANGELOG.md

+9-2
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [11.16.5]
10+
### Changed
11+
- Re-enable the opt-in modal (2df1eb566b)
12+
913
## [11.16.4]
14+
### Changed
15+
- Temporarily disable the opt-in modal ([#25007](https://github.com/MetaMask/metamask-extension/pull/25007))
1016

1117
## [11.16.3]
1218
### Changed
13-
- Update Trezor logo ([#24343]https://github.com/MetaMask/metamask-extension/pull/24343)
19+
- Update Trezor logo ([#24343](https://github.com/MetaMask/metamask-extension/pull/24343))
1420

1521
## [11.16.2]
1622
### Fixed
@@ -4762,7 +4768,8 @@ Update styles and spacing on the critical error page ([#20350](https://github.c
47624768
- Added the ability to restore accounts from seed words.
47634769

47644770

4765-
[Unreleased]: https://github.com/MetaMask/metamask-extension/compare/v11.16.4...HEAD
4771+
[Unreleased]: https://github.com/MetaMask/metamask-extension/compare/v11.16.5...HEAD
4772+
[11.16.5]: https://github.com/MetaMask/metamask-extension/compare/v11.16.4...v11.16.5
47664773
[11.16.4]: https://github.com/MetaMask/metamask-extension/compare/v11.16.3...v11.16.4
47674774
[11.16.3]: https://github.com/MetaMask/metamask-extension/compare/v11.16.2...v11.16.3
47684775
[11.16.2]: https://github.com/MetaMask/metamask-extension/compare/v11.16.1...v11.16.2

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "metamask-crx",
3-
"version": "11.16.4",
3+
"version": "11.16.5",
44
"private": true,
55
"repository": {
66
"type": "git",

ui/pages/home/home.component.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -841,7 +841,7 @@ export default class Home extends PureComponent {
841841
!newNetworkAddedConfigurationId;
842842

843843
const showSmartTransactionsOptInModal =
844-
false && canSeeModals && isSmartTransactionsOptInModalAvailable;
844+
canSeeModals && isSmartTransactionsOptInModalAvailable;
845845

846846
const showWhatsNew =
847847
canSeeModals &&

0 commit comments

Comments
 (0)