From 13702cc0a86ea46ea15f10fe9fba1c2e63669fc0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C5=A1a=20Davidovi=C4=87?= <62179680+sd4v1d@users.noreply.github.com> Date: Thu, 10 Feb 2022 07:35:10 +0100 Subject: [PATCH] Adding missing path --- app/src/intl/locales.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/intl/locales.ts b/app/src/intl/locales.ts index 7a277e02..63c3b1a8 100644 --- a/app/src/intl/locales.ts +++ b/app/src/intl/locales.ts @@ -152,7 +152,7 @@ export const loadOne = (locale: string): ILocale => { res = list.filter((item) => item.locale.includes('en'))[0]; - res.messages = require(`./${res.file}`); + res.messages = require(`./translations/${res.file}`); } return res;