lint warning fix

This commit is contained in:
proddy
2026-03-17 21:47:01 +01:00
parent 37115a174d
commit 25a7aac360

View File

@@ -23,6 +23,8 @@ export const saveFile = (
}, 100);
} catch (error) {
console.error('Failed to save file:', error);
throw new Error(`Unable to save file: ${filename}${extension}`, { cause: error });
throw new Error(`Unable to save file: ${filename}${extension}`, {
cause: error
});
}
};