From 74d9b0aafe94513197cec9078955129f36accb2d Mon Sep 17 00:00:00 2001 From: lohxt1 Date: Mon, 17 Mar 2025 16:55:56 +0530 Subject: [PATCH] fix browse_files function --- packages/bruno-electron/src/utils/filesystem.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/bruno-electron/src/utils/filesystem.js b/packages/bruno-electron/src/utils/filesystem.js index aaff867b1..a95c116eb 100644 --- a/packages/bruno-electron/src/utils/filesystem.js +++ b/packages/bruno-electron/src/utils/filesystem.js @@ -131,7 +131,7 @@ const browseFiles = async (win, filters = [], properties = []) => { return []; } - return filePaths.map((path) => path.resolve(path)).filter((path) => isFile(path)); + return filePaths.map((filePath) => path.resolve(filePath)).filter((filePath) => isFile(filePath)); }; const chooseFileToSave = async (win, preferredFileName = '') => {