From 732e5447bbee16e06584b105031497a58a41e450 Mon Sep 17 00:00:00 2001 From: xnkevinnguyen Date: Wed, 26 Feb 2020 11:05:24 -0800 Subject: [PATCH] Remove a comment and console.log --- src/view/components/toolbar/InputSlider.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/view/components/toolbar/InputSlider.tsx b/src/view/components/toolbar/InputSlider.tsx index 27e656b50..800261095 100644 --- a/src/view/components/toolbar/InputSlider.tsx +++ b/src/view/components/toolbar/InputSlider.tsx @@ -87,9 +87,7 @@ class InputSlider extends React.Component { const newValue = event.target.validity.valid ? event.target.value : this.state.value; - // this.setState({ value: newValue }); if (this.props.onUpdateValue) { - console.log(this.props.type, newValue); this.props.onUpdateValue(this.props.type as SENSOR_LIST, newValue); } return newValue;