Skip to content

Commit

Permalink
assign -> merge
Browse files Browse the repository at this point in the history
  • Loading branch information
tstirrat committed Apr 27, 2020
1 parent c9dfc6c commit c4d6425
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions e2e/helpers/language.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import assign from 'lodash/assign';
import merge from 'lodash/merge';

import * as english from '../../app/locales/en.json';
import * as haitian from '../../app/locales/ht.json';
Expand All @@ -9,7 +9,7 @@ import * as haitian from '../../app/locales/ht.json';
*/
const languageStrings = {
'en-US': english,
'ht-HT': assign({}, english, haitian),
'ht-HT': merge({}, english, haitian),
};

export const languages = Object.keys(languageStrings).map(locale => [
Expand Down

0 comments on commit c4d6425

Please sign in to comment.