Skip to content

Commit

Permalink
fix: simplify translation object (#2548)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulschreiber authored Nov 26, 2024
1 parent 903fd08 commit 87b8ace
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions dev-client/src/translations/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,10 @@ i18n.use(initReactI18next).init({
compatibilityJSON: 'v4',
resources: {
en: {
translation: {
...en,
},
translation: en,
},
es: {
translation: {
...es,
},
translation: es,
},
},
debug: __DEV__ && process.env.NODE_ENV !== 'test',
Expand Down

0 comments on commit 87b8ace

Please sign in to comment.