fix: remove unused variables (#7968)

This commit is contained in:
Don Isaac
2024-08-26 02:23:56 -04:00
committed by GitHub
parent 14066965fa
commit dbcfd24ed8
18 changed files with 18 additions and 18 deletions

View File

@@ -49,7 +49,7 @@ const getBaseTranslations = async (baseLanguage: { tag: string }) => {
const main = async () => {
try {
await fs.access(RES_DIR);
} catch (error) {
} catch {
fs.mkdir(RES_DIR).catch(console.error);
console.log('Create directory', RES_DIR);
}