diff --git a/apps/remix-ide/src/app.js b/apps/remix-ide/src/app.js index 6c1ebf6801..303d06f8c0 100644 --- a/apps/remix-ide/src/app.js +++ b/apps/remix-ide/src/app.js @@ -343,7 +343,6 @@ class AppComponent { analysis, test, filePanel.remixdHandle, - filePanel.gitHandle, filePanel.hardhatHandle, filePanel.foundryHandle, filePanel.truffleHandle, diff --git a/apps/remix-ide/src/app/panels/file-panel.js b/apps/remix-ide/src/app/panels/file-panel.js index d6a3708269..2ff7a1da01 100644 --- a/apps/remix-ide/src/app/panels/file-panel.js +++ b/apps/remix-ide/src/app/panels/file-panel.js @@ -5,7 +5,6 @@ import React from 'react' // eslint-disable-line import { FileSystemProvider } from '@remix-ui/workspace' // eslint-disable-line import Registry from '../state/registry' import { RemixdHandle } from '../plugins/remixd-handle' -const { GitHandle } = require('../files/git-handle.js') const { HardhatHandle } = require('../files/hardhat-handle.js') const { FoundryHandle } = require('../files/foundry-handle.js') const { TruffleHandle } = require('../files/truffle-handle.js') @@ -52,7 +51,6 @@ module.exports = class Filepanel extends ViewPlugin { this.el.setAttribute('id', 'fileExplorerView') this.remixdHandle = new RemixdHandle(this.fileProviders.localhost, appManager) - this.gitHandle = new GitHandle() this.hardhatHandle = new HardhatHandle() this.foundryHandle = new FoundryHandle() this.truffleHandle = new TruffleHandle() diff --git a/apps/remix-ide/src/app/plugins/remixd-handle.tsx b/apps/remix-ide/src/app/plugins/remixd-handle.tsx index 35353d774d..62329cf327 100644 --- a/apps/remix-ide/src/app/plugins/remixd-handle.tsx +++ b/apps/remix-ide/src/app/plugins/remixd-handle.tsx @@ -6,7 +6,6 @@ import * as packageJson from '../../../../../package.json' import { version as remixdVersion } from '../../../../../libs/remixd/package.json' import { PluginManager } from '@remixproject/engine' import { AppModal, AlertModal } from '@remix-ui/app' -import { CopyToClipboard } from '@remix-ui/clipboard' const LOCALHOST = ' - connect to localhost - ' @@ -25,12 +24,6 @@ const profile = { authorContact: "" } -enum State { - ok, - cancel, - new -} - export class RemixdHandle extends WebsocketPlugin { localhostProvider: any appManager: PluginManager diff --git a/apps/remix-ide/src/remixAppManager.js b/apps/remix-ide/src/remixAppManager.js index 4d79ab2705..48e367c10c 100644 --- a/apps/remix-ide/src/remixAppManager.js +++ b/apps/remix-ide/src/remixAppManager.js @@ -190,7 +190,7 @@ class PluginLoader { constructor() { const queryParams = new QueryParams() - this.donotAutoReload = ['remixd', 'git'] // that would be a bad practice to force loading some plugins at page load. + this.donotAutoReload = ['remixd'] // that would be a bad practice to force loading some plugins at page load. this.loaders = {} this.loaders.localStorage = { set: (plugin, actives) => {