mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 09:57:02 +01:00
batch fix misspelling (#13449)
This commit is contained in:
parent
851fce9a3b
commit
3eb99babf2
@ -414,7 +414,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
- [#11093](https://github.com/MetaMask/metamask-extension/pull/11093): Update all uses of "Seed Phrase" to "Secret Recovery Phrase"
|
||||
|
||||
### Fixed
|
||||
- [#11025](https://github.com/MetaMask/metamask-extension/pull/11025): Fixed redirection to the build quotes page from the swaps page when failure has occured
|
||||
- [#11025](https://github.com/MetaMask/metamask-extension/pull/11025): Fixed redirection to the build quotes page from the swaps page when failure has occurred
|
||||
- [#11015](https://github.com/MetaMask/metamask-extension/pull/11015): Prevent an undefined gas price from breaking the transaction list
|
||||
- [#11013](https://github.com/MetaMask/metamask-extension/pull/11013): Prevent signature request component from canceling hardware wallet signing
|
||||
- [#10982](https://github.com/MetaMask/metamask-extension/pull/10982): Re-validating chain id when rpc url changes [custom network form]
|
||||
@ -468,7 +468,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
## [9.5.1]
|
||||
### Fixed
|
||||
- Fixed icon on approval screen ([#11048](https://github.com/MetaMask/metamask-extension/pull/11048))
|
||||
- Fixed broken app state for some users with Chinese, Portugese or Spanish browser language settings. ([#11036](https://github.com/MetaMask/metamask-extension/pull/11036))
|
||||
- Fixed broken app state for some users with Chinese, Portuguese or Spanish browser language settings. ([#11036](https://github.com/MetaMask/metamask-extension/pull/11036))
|
||||
|
||||
## [9.5.0] - 2021-04-28
|
||||
### Added
|
||||
@ -557,7 +557,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
- Update Japanese translations. ([#10265](https://github.com/MetaMask/metamask-extension/pull/10265))
|
||||
- Update Chinese(Simplified) translations. ([#9388](https://github.com/MetaMask/metamask-extension/pull/9388))
|
||||
- Update Vietnamese translations. ([#10270](https://github.com/MetaMask/metamask-extension/pull/10270))
|
||||
- Update Spanish and Spanish(Latin American and Carribean) translations. ([#10258](https://github.com/MetaMask/metamask-extension/pull/10258))
|
||||
- Update Spanish and Spanish(Latin American and Caribbean) translations. ([#10258](https://github.com/MetaMask/metamask-extension/pull/10258))
|
||||
- Update Russian translations. ([#10268](https://github.com/MetaMask/metamask-extension/pull/10268))
|
||||
- Update Tagalog localized messages. ([#10269](https://github.com/MetaMask/metamask-extension/pull/10269))
|
||||
- Fix 'imported' translation use case for Dutch. ([#10448](https://github.com/MetaMask/metamask-extension/pull/10448))
|
||||
|
@ -11,7 +11,7 @@ import { SECOND } from '../../../shared/constants/time';
|
||||
|
||||
const defaultCaptureException = (err) => {
|
||||
// throw error on clean stack so its captured by platform integrations (eg sentry)
|
||||
// but does not interupt the call stack
|
||||
// but does not interrupt the call stack
|
||||
setTimeout(() => {
|
||||
throw err;
|
||||
});
|
||||
|
@ -60,7 +60,7 @@ describe('EditGasFeeButton', () => {
|
||||
expect(screen.queryByText('Market')).toBeInTheDocument();
|
||||
});
|
||||
|
||||
it('should render edit link with text agressive if high gas estimates are selected', () => {
|
||||
it('should render edit link with text aggressive if high gas estimates are selected', () => {
|
||||
render({ contextProps: { transaction: { userFeeLevel: 'high' } } });
|
||||
expect(screen.queryByText('🦍')).toBeInTheDocument();
|
||||
expect(screen.queryByText('Aggressive')).toBeInTheDocument();
|
||||
|
@ -581,7 +581,7 @@ export const initialState = {
|
||||
gas: {
|
||||
// indicate whether the gas estimate is loading
|
||||
isGasEstimateLoading: true,
|
||||
// String token indentifying a listener for polling on the gasFeeController
|
||||
// String token identifying a listener for polling on the gasFeeController
|
||||
gasEstimatePollToken: null,
|
||||
// has the user set custom gas in the custom gas modal
|
||||
isCustomGasSet: false,
|
||||
|
Loading…
Reference in New Issue
Block a user