Skip to content

Commit

Permalink
Merge pull request #22904 from MetaMask/Version-v11.9.3
Browse files Browse the repository at this point in the history
Version v11.9.3
  • Loading branch information
danjm authored Feb 13, 2024
2 parents 94e1ebf + a6e1b78 commit 9321295
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [11.9.3]
### Fixed
- Fix: don't prevent users from editing gas when "Show balance and token price checker" toggle is off ([#22890](https://github.com/MetaMask/metamask-extension/pull/22890))

## [11.9.2]
### Fixed
- [MMI] Patches `@metamask/accounts-controller` to fix an issue with MMI where custodial keyrings could nto be found ([#22730](https://github.com/MetaMask/metamask-extension/pull/22692))
Expand Down Expand Up @@ -4347,7 +4351,8 @@ Update styles and spacing on the critical error page ([#20350](https://github.c
### Uncategorized
- Added the ability to restore accounts from seed words.

[Unreleased]: https://github.com/MetaMask/metamask-extension/compare/v11.9.2...HEAD
[Unreleased]: https://github.com/MetaMask/metamask-extension/compare/v11.9.3...HEAD
[11.9.3]: https://github.com/MetaMask/metamask-extension/compare/v11.9.2...v11.9.3
[11.9.2]: https://github.com/MetaMask/metamask-extension/compare/v11.9.1...v11.9.2
[11.9.1]: https://github.com/MetaMask/metamask-extension/compare/v11.9.0...v11.9.1
[11.9.0]: https://github.com/MetaMask/metamask-extension/compare/v11.8.0...v11.9.0
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "metamask-crx",
"version": "11.9.2",
"version": "11.9.3",
"private": true,
"repository": {
"type": "git",
Expand Down
13 changes: 7 additions & 6 deletions ui/components/app/gas-details-item/gas-details-item.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,18 +102,19 @@ const GasDetailsItem = ({
detailTitle={<Text>{t('estimatedFee')}</Text>}
detailTitleColor={TextColor.textDefault}
detailText={
useCurrencyRateCheck &&
Object.keys(draftTransaction).length === 0 && (
<div className="gas-details-item__currency-container">
<LoadingHeartBeat estimateUsed={estimateUsed} />
<EditGasFeeIcon
userAcknowledgedGasMissing={userAcknowledgedGasMissing}
/>
<UserPreferencedCurrencyDisplay
type={SECONDARY}
value={getTransactionFeeTotal}
hideLabel={Boolean(useNativeCurrencyAsPrimaryCurrency)}
/>
{useCurrencyRateCheck && (
<UserPreferencedCurrencyDisplay
type={SECONDARY}
value={getTransactionFeeTotal}
hideLabel={Boolean(useNativeCurrencyAsPrimaryCurrency)}
/>
)}
</div>
)
}
Expand Down

0 comments on commit 9321295

Please sign in to comment.