refactor(dashboard): move price clients to app namespace and simplify data

This commit is contained in:
2026-08-01 21:55:23 +02:00
parent 69f214ade3
commit 0fa648f833
8 changed files with 31 additions and 32 deletions
+4 -4
View File
@@ -1,9 +1,9 @@
import i18next from 'i18next';
import translations from './translations';
import resources from './translations';
await i18next.init({
await i18next.init(() => ({
lng: 'nl',
resources: translations,
});
resources,
}));
export default i18next;