From 771cb4adeebe080417ceac070b51660428f22ee1 Mon Sep 17 00:00:00 2001 From: Antoine <antoine.roy@tetras-libre.fr> Date: Fri, 1 Dec 2023 09:56:14 +0100 Subject: [PATCH] Remove console.log() used for debuging --- src/HMSInput.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/HMSInput.js b/src/HMSInput.js index 38fd2e9..d8ac263 100644 --- a/src/HMSInput.js +++ b/src/HMSInput.js @@ -39,8 +39,6 @@ class HMSInput extends Component { const { state } = this; state[ev.target.name] = Number(ev.target.value); onChange(state.hours * 3600 + state.minutes * 60 + state.seconds); - console.log('h : ' + state.hours + ' m : ' + state.minutes + ' s : ' + state.seconds) - } /** Render */ -- GitLab