From 09c23bd319d54bacba35ab7d180fb79ee8d2aa3e Mon Sep 17 00:00:00 2001 From: filip mertens Date: Tue, 11 May 2021 06:12:38 +0200 Subject: [PATCH 1/3] hide errors when creating new workspace --- libs/remix-ui/file-explorer/src/lib/file-explorer.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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) From 9c42776f27e1af8ff96844135d2bb4f59e74d6e0 Mon Sep 17 00:00:00 2001 From: yann300 Date: Tue, 11 May 2021 11:33:13 +0200 Subject: [PATCH 2/3] fix ipfs deploy of the debugger (#1170) --- apps/debugger/src/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 - + From 273d85b56e343ff2456612c9289460bd2a629f78 Mon Sep 17 00:00:00 2001 From: lianahus Date: Thu, 6 May 2021 20:13:45 +0200 Subject: [PATCH 3/3] remove url params --- apps/remix-ide/src/app/files/remixd-handle.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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).