Browse Source

fix: Removed debug flag

master
Denis Thiessen 6 months ago
parent
commit
5edfa6150f
  1. 2
      src/App.js
  2. 3
      src/core/i18n/i18n.js

2
src/App.js

@ -20,7 +20,7 @@ function App() {
}
}
wait(500);
wait(200);
return (
<React.Suspense fallback="loading">

3
src/core/i18n/i18n.js

@ -9,12 +9,11 @@ i18n
.use(LanguageDetector)
.init({
fallbackLng: "en",
debug: true,
interpolation: {
escapeValue: false // react already safes from xss
}
});
i18n.changeLanguage('de'); // For now to control the language... Later on, not necessary...
i18n.changeLanguage('en'); // For now to control the language... Later on, not necessary...
export default i18n;
Loading…
Cancel
Save