pull/5324/head
bunsenstraat 4 weeks ago
parent c30a52b2f5
commit 3724680526
  1. 1
      apps/remix-ide/src/app/components/hidden-panel.tsx
  2. 1
      libs/remix-ui/terminal/src/lib/actions/terminalAction.ts

@ -23,7 +23,6 @@ export class HiddenPanel extends AbstractPanel {
} }
addView(profile: any, view: any): void { addView(profile: any, view: any): void {
console.log('addView', profile, view)
super.removeView(profile) super.removeView(profile)
this.renderComponent() this.renderComponent()
super.addView(profile, view) super.addView(profile, view)

@ -79,7 +79,6 @@ export const filterFnAction = (name: string, filterFn, dispatch: React.Dispatch<
} }
export const registerLogScriptRunnerAction = (on, commandName, commandFn, dispatch: React.Dispatch<any>) => { export const registerLogScriptRunnerAction = (on, commandName, commandFn, dispatch: React.Dispatch<any>) => {
console.log('registerLogScriptRunnerAction', commandName)
on('scriptRunnerBridge', commandName, (msg) => { on('scriptRunnerBridge', commandName, (msg) => {
commandFn.log.apply(commandFn, msg.data) // eslint-disable-line commandFn.log.apply(commandFn, msg.data) // eslint-disable-line
dispatch({ type: commandName, payload: { commandFn, message: msg.data } }) dispatch({ type: commandName, payload: { commandFn, message: msg.data } })

Loading…
Cancel
Save