Skip to content

Commit 9321295

Browse files
authored
Merge pull request #22904 from MetaMask/Version-v11.9.3
Version v11.9.3
2 parents 94e1ebf + a6e1b78 commit 9321295

File tree

3 files changed

+14
-8
lines changed

3 files changed

+14
-8
lines changed

CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [11.9.3]
10+
### Fixed
11+
- 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))
12+
913
## [11.9.2]
1014
### Fixed
1115
- [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))
@@ -4347,7 +4351,8 @@ Update styles and spacing on the critical error page ([#20350](https://github.c
43474351
### Uncategorized
43484352
- Added the ability to restore accounts from seed words.
43494353

4350-
[Unreleased]: https://github.com/MetaMask/metamask-extension/compare/v11.9.2...HEAD
4354+
[Unreleased]: https://github.com/MetaMask/metamask-extension/compare/v11.9.3...HEAD
4355+
[11.9.3]: https://github.com/MetaMask/metamask-extension/compare/v11.9.2...v11.9.3
43514356
[11.9.2]: https://github.com/MetaMask/metamask-extension/compare/v11.9.1...v11.9.2
43524357
[11.9.1]: https://github.com/MetaMask/metamask-extension/compare/v11.9.0...v11.9.1
43534358
[11.9.0]: https://github.com/MetaMask/metamask-extension/compare/v11.8.0...v11.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": "11.9.2",
3+
"version": "11.9.3",
44
"private": true,
55
"repository": {
66
"type": "git",

ui/components/app/gas-details-item/gas-details-item.js

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -102,18 +102,19 @@ const GasDetailsItem = ({
102102
detailTitle={<Text>{t('estimatedFee')}</Text>}
103103
detailTitleColor={TextColor.textDefault}
104104
detailText={
105-
useCurrencyRateCheck &&
106105
Object.keys(draftTransaction).length === 0 && (
107106
<div className="gas-details-item__currency-container">
108107
<LoadingHeartBeat estimateUsed={estimateUsed} />
109108
<EditGasFeeIcon
110109
userAcknowledgedGasMissing={userAcknowledgedGasMissing}
111110
/>
112-
<UserPreferencedCurrencyDisplay
113-
type={SECONDARY}
114-
value={getTransactionFeeTotal}
115-
hideLabel={Boolean(useNativeCurrencyAsPrimaryCurrency)}
116-
/>
111+
{useCurrencyRateCheck && (
112+
<UserPreferencedCurrencyDisplay
113+
type={SECONDARY}
114+
value={getTransactionFeeTotal}
115+
hideLabel={Boolean(useNativeCurrencyAsPrimaryCurrency)}
116+
/>
117+
)}
117118
</div>
118119
)
119120
}

0 commit comments

Comments
 (0)