diff --git a/apps/remix-ide/src/app/files/fileManager.ts b/apps/remix-ide/src/app/files/fileManager.ts index aaedc9d774..803073c5c6 100644 --- a/apps/remix-ide/src/app/files/fileManager.ts +++ b/apps/remix-ide/src/app/files/fileManager.ts @@ -192,8 +192,8 @@ class FileManager extends Plugin { path = this.normalize(path) path = this.limitPluginScope(path) path = this.getPathFromUrl(path).file - //await this._handleExists(path, `Cannot open file ${path}`) - //await this._handleIsFile(path, `Cannot open file ${path}`) + await this._handleExists(path, `Cannot open file ${path}`) + await this._handleIsFile(path, `Cannot open file ${path}`) await this.openFile(path) }