1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 03:12:42 +02:00

Fix action for setting locale

This commit is contained in:
Dan Finlay 2018-04-13 16:14:23 -07:00
parent 3afe76bcba
commit 34692acdf9
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,
})