From 937200bf792636d0566bde842fe1a2953c8e7aec Mon Sep 17 00:00:00 2001 From: Jarian Cottingham Date: Sat, 21 Feb 2026 15:58:48 -0600 Subject: [PATCH] Fix duplicate variable declaration in main.js --- main.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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)) {