Commit 560884d0 authored by David Walsh's avatar David Walsh Committed by Jason Laster
Browse files

Bug 1520957 - [release 119] Remove unwanted console.log (#7732). r=dwalsh

parent 5983c357
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -12,7 +12,6 @@ import type { EventListenerBreakpoints } from "../types";
type OuterState = { eventListenerBreakpoints: EventListenerBreakpoints };

function update(state: EventListenerBreakpoints = [], action: any) {
  console.log("update; state is: ", state);
  switch (action.type) {
    case "ADD_EVENT_LISTENERS":
      return updateEventTypes("add", state, action.events);