From 72ee6706202fd3c7d9098a5825b9f295c96ce34b Mon Sep 17 00:00:00 2001 From: Colin Megill Date: Mon, 5 Jul 2021 02:47:47 -0700 Subject: [PATCH] remove logs --- client/src/reducers/dotplot.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/client/src/reducers/dotplot.js b/client/src/reducers/dotplot.js index cb858cde..96cf3846 100644 --- a/client/src/reducers/dotplot.js +++ b/client/src/reducers/dotplot.js @@ -7,14 +7,11 @@ const Dotplot = ( ) => { switch (action.type) { case "set dotplot row": - console.log("in dotplot reducer row is", action.data); return { ...state, row: action.data, }; case "set dotplot column": - console.log("in dotplot reducer COLUMN is", action.data); - return { ...state, column: action.data,