From 372468052677f1d93261412424ce12e89989ab20 Mon Sep 17 00:00:00 2001 From: bunsenstraat Date: Sat, 26 Oct 2024 09:48:30 +0200 Subject: [PATCH] rm logs --- apps/remix-ide/src/app/components/hidden-panel.tsx | 1 - libs/remix-ui/terminal/src/lib/actions/terminalAction.ts | 1 - 2 files changed, 2 deletions(-) diff --git a/apps/remix-ide/src/app/components/hidden-panel.tsx b/apps/remix-ide/src/app/components/hidden-panel.tsx index fc492475ba..0629d2014f 100644 --- a/apps/remix-ide/src/app/components/hidden-panel.tsx +++ b/apps/remix-ide/src/app/components/hidden-panel.tsx @@ -23,7 +23,6 @@ export class HiddenPanel extends AbstractPanel { } addView(profile: any, view: any): void { - console.log('addView', profile, view) super.removeView(profile) this.renderComponent() super.addView(profile, view) diff --git a/libs/remix-ui/terminal/src/lib/actions/terminalAction.ts b/libs/remix-ui/terminal/src/lib/actions/terminalAction.ts index 0a8a6b5891..9d9abbb760 100644 --- a/libs/remix-ui/terminal/src/lib/actions/terminalAction.ts +++ b/libs/remix-ui/terminal/src/lib/actions/terminalAction.ts @@ -79,7 +79,6 @@ export const filterFnAction = (name: string, filterFn, dispatch: React.Dispatch< } export const registerLogScriptRunnerAction = (on, commandName, commandFn, dispatch: React.Dispatch) => { - console.log('registerLogScriptRunnerAction', commandName) on('scriptRunnerBridge', commandName, (msg) => { commandFn.log.apply(commandFn, msg.data) // eslint-disable-line dispatch({ type: commandName, payload: { commandFn, message: msg.data } })