1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Merge pull request #3976 from MetaMask/i3973-FixLocaleSettings

Fix action for setting locale
This commit is contained in:
kumavis 2018-04-16 09:01:26 -07:00 committed by GitHub
commit 603d6ab416
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -3,6 +3,7 @@
## Current Master
- Improved performance of 3D fox logo.
- Fix bug that prevents setting language locale in settings.
## 4.5.5 Fri Apr 06 2018

View File

@ -358,7 +358,7 @@ function reduceMetamask (state, action) {
welcomeScreenSeen: true,
})
case action.SET_CURRENT_LOCALE:
case actions.SET_CURRENT_LOCALE:
return extend(metamaskState, {
currentLocale: action.value,
})