diff --git a/main.js b/main.js index 6920724..98cc9a6 100644 --- a/main.js +++ b/main.js @@ -135,8 +135,7 @@ ipcMain.handle('move-file-to-folder', async (event, { filePath, folderName }) => try { writeLog(`Move file request received: ${filePath} to ${folderName}`); - const fs = require('fs'); - const path = require('path'); + // Note: fs and path are already required at the top level // Check if file exists if (!fs.existsSync(filePath)) {