Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into Version-v11.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
danjm committed May 23, 2024
2 parents ad0234b + 8620dac commit ab26c04
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Improved the permissions page to correctly display all permissions across networks ([#23986](https://github.com/MetaMask/metamask-extension/pull/23986))
- Enhanced the connections page to accurately display connected dApp information and status ([#24022](https://github.com/MetaMask/metamask-extension/pull/24022))
- Fixed an issue to ensure smooth disconnection of a single account from a dApp without breaking the page ([#23935](https://github.com/MetaMask/metamask-extension/pull/23935))
## [11.15.6]
### Changed
- Disable smart transaction opt-in modal ([#24715](https://github.com/MetaMask/metamask-extension/pull/24715))

## [11.15.5]
### Changed
Expand Down Expand Up @@ -4746,6 +4749,8 @@ Update styles and spacing on the critical error page ([#20350](https://github.c

[Unreleased]: https://github.com/MetaMask/metamask-extension/compare/v11.16.0...HEAD
[11.16.0]: https://github.com/MetaMask/metamask-extension/compare/v11.15.5...v11.16.0
[Unreleased]: https://github.com/MetaMask/metamask-extension/compare/v11.15.6...HEAD
[11.15.6]: https://github.com/MetaMask/metamask-extension/compare/v11.15.5...v11.15.6
[11.15.5]: https://github.com/MetaMask/metamask-extension/compare/v11.15.4...v11.15.5
[11.15.4]: https://github.com/MetaMask/metamask-extension/compare/v11.15.3...v11.15.4
[11.15.3]: https://github.com/MetaMask/metamask-extension/compare/v11.15.2...v11.15.3
Expand Down
4 changes: 3 additions & 1 deletion ui/pages/home/home.component.js
Original file line number Diff line number Diff line change
Expand Up @@ -840,8 +840,10 @@ export default class Home extends PureComponent {
!process.env.IN_TEST &&
!newNetworkAddedConfigurationId;

// TODO(dbrans): temporary fix to disable the smart transactions opt-in modal
// in 11.15 to unblock the release. Change this line in 11.16.
const showSmartTransactionsOptInModal =
canSeeModals && isSmartTransactionsOptInModalAvailable;
false && canSeeModals && isSmartTransactionsOptInModalAvailable;

const showWhatsNew =
canSeeModals &&
Expand Down

0 comments on commit ab26c04

Please sign in to comment.