2
0
mirror of https://github.com/frappe/books.git synced 2024-11-08 14:50:56 +00:00

fix translations path in dev

This commit is contained in:
Abdallah A. Zaqout 2023-06-29 16:25:26 -07:00 committed by Alan
parent 4013303196
commit 01b29dc2a6

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 {