From 44cac1e7d2c30e73ac3a528872855692d36d7371 Mon Sep 17 00:00:00 2001 From: Thomas Heartman Date: Mon, 28 Feb 2022 23:50:10 +0100 Subject: [PATCH] chore: remove debug logs --- website/src/components/UserFeedback/index.jsx | 5 ----- 1 file changed, 5 deletions(-) diff --git a/website/src/components/UserFeedback/index.jsx b/website/src/components/UserFeedback/index.jsx index 7ffc945be6..78db28ba34 100644 --- a/website/src/components/UserFeedback/index.jsx +++ b/website/src/components/UserFeedback/index.jsx @@ -57,7 +57,6 @@ const getUserDataRecord = () => const storeData = (data) => { const existingData = getUserDataRecord(); - console.log('this is the existing data:', existingData); localStorage.setItem( localstorageKey, JSON.stringify({ @@ -112,8 +111,6 @@ export const FeedbackWrapper = ({ seedData, open }) => { populateData, ); - console.log(state, state.data); - const close = () => dispatch({ kind: 'close' }); if (feedbackIsOpen) { storeData(state); @@ -121,7 +118,6 @@ export const FeedbackWrapper = ({ seedData, open }) => { const stepForward = () => { dispatch({ kind: 'step forward' }); - console.log(state); }; const stepBack = () => { dispatch({ kind: 'step back' }); @@ -206,7 +202,6 @@ export const FeedbackWrapper = ({ seedData, open }) => { const value = parseInt( e.target.value, ); - console.log('the value is', value); setNewValue(value); }} autoFocus={