From a6f201d2ee269bd8dba8e36de862b8e70c9955ab Mon Sep 17 00:00:00 2001 From: Davlatov Shahzod Date: Sun, 3 Sep 2023 19:42:09 +0300 Subject: [PATCH] await initI18next --- frontend/src/application.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/application.jsx b/frontend/src/application.jsx index 4b59acf5..d9b65916 100644 --- a/frontend/src/application.jsx +++ b/frontend/src/application.jsx @@ -11,7 +11,7 @@ import { rootReducer } from './slices'; import { initI18next } from './initI18next.js'; export default async () => { - initI18next(); + await initI18next(); const store = configureStore({ reducer: rootReducer,