diff --git a/apps/debugger/src/index.html b/apps/debugger/src/index.html index e44825a34e..848097620c 100644 --- a/apps/debugger/src/index.html +++ b/apps/debugger/src/index.html @@ -3,7 +3,7 @@ Debugger - + diff --git a/apps/remix-ide/src/app/files/remixd-handle.js b/apps/remix-ide/src/app/files/remixd-handle.js index b5f9ec9804..3ec635040c 100644 --- a/apps/remix-ide/src/app/files/remixd-handle.js +++ b/apps/remix-ide/src/app/files/remixd-handle.js @@ -135,7 +135,7 @@ function remixdDialog () {
If you have looked at the Remixd docs and just need remixd command,
here it is:
remixd -s absolute-path-to-the-shared-folder --remix-ide your-remix-ide-URL-instance
-
Connection will start a session between ${window.location.href} and your local file system ws://127.0.0.1:65520 +
Connection will start a session between ${window.location.origin} and your local file system ws://127.0.0.1:65520 so please make sure your system is secured enough (port 65520 neither opened nor forwarded).
diff --git a/libs/remix-ui/file-explorer/src/lib/file-explorer.tsx b/libs/remix-ui/file-explorer/src/lib/file-explorer.tsx index 33bfd203fa..17f78d79fc 100644 --- a/libs/remix-ui/file-explorer/src/lib/file-explorer.tsx +++ b/libs/remix-ui/file-explorer/src/lib/file-explorer.tsx @@ -261,8 +261,7 @@ export const FileExplorer = (props: FileExplorerProps) => { const fetchDirectoryContent = async (folderPath: string): Promise => { return new Promise((resolve) => { - filesProvider.resolveDirectory(folderPath, (error, fileTree) => { - if (error) console.error(error) + filesProvider.resolveDirectory(folderPath, (_error, fileTree) => { const files = normalize(fileTree) resolve(files)