fix translations path in dev

This commit is contained in:
Abdallah A. Zaqout
2023-06-30 03:04:16 -07:00
committed by Alan
parent 4013303196
commit 01b29dc2a6
+1 -1
View File
@@ -159,7 +159,7 @@ async function getTranslationFilePath(code: string) {
/**
* This will be used for in Development mode
*/
filePath = path.join(__dirname, `../translations/${code}.csv`);
filePath = path.join(__dirname, `../../translations/${code}.csv`);
}
try {