From 8802f525bc3c40faece1905f22a473b8752a415c Mon Sep 17 00:00:00 2001 From: aniket-engg Date: Mon, 7 Feb 2022 16:33:22 +0530 Subject: [PATCH] remove extra console and deps --- apps/remix-ide/src/app/components/vertical-icons.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/apps/remix-ide/src/app/components/vertical-icons.tsx b/apps/remix-ide/src/app/components/vertical-icons.tsx index 2e8deaa182..eea114b637 100644 --- a/apps/remix-ide/src/app/components/vertical-icons.tsx +++ b/apps/remix-ide/src/app/components/vertical-icons.tsx @@ -1,13 +1,11 @@ // eslint-disable-next-line no-use-before-define import React from 'react' import ReactDOM from 'react-dom' -import Registry from '../state/registry' import packageJson from '../../../../../package.json' import { Plugin } from '@remixproject/engine' import { EventEmitter } from 'events' import { IconRecord, RemixUiVerticalIconsPanel } from '@remix-ui/vertical-icons-panel' import { Profile } from '@remixproject/plugin-utils' -import { timeStamp } from 'console' const profile = { name: 'menuicons', @@ -95,7 +93,6 @@ export class VerticalIcons extends Plugin { */ select (name: string) { // TODO: Only keep `this.emit` (issue#2210) - console.log(name, this) this.emit('showContent', name) this.events.emit('showContent', name) }