diff --git a/apps/remix-ide/src/app/files/remixd-handle.js b/apps/remix-ide/src/app/files/remixd-handle.js index 8d706441d7..666ff495d1 100644 --- a/apps/remix-ide/src/app/files/remixd-handle.js +++ b/apps/remix-ide/src/app/files/remixd-handle.js @@ -47,7 +47,6 @@ export class RemixdHandle extends WebsocketPlugin { } activate () { - this.fileSystemExplorer.show() this.connectToLocalhost() } @@ -83,7 +82,9 @@ export class RemixdHandle extends WebsocketPlugin { this.canceled() } }, 3000) - this.locahostProvider.init() + this.locahostProvider.init(() => { + this.fileSystemExplorer.show() + }) this.call('manager', 'activatePlugin', 'git') } }