Skip to content

Commit

Permalink
fix: wsl integration on browse folder
Browse files Browse the repository at this point in the history
  • Loading branch information
ailtonloures committed Dec 14, 2024
1 parent 504a185 commit 3b5efde
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,12 @@ function renderApp(context) {

if (!filePaths) return;

const filePathData = getBookmarkDataFromFilePath(filePaths.at(0));
const filePathData = getBookmarkDataFromFilePath(
context,
filePaths.at(0)
);

if (!filePathData) return;

createBookmark(filePathData);
renderApp(context);
Expand Down

0 comments on commit 3b5efde

Please sign in to comment.