diff --git a/src/AnnotationCreation.js b/src/AnnotationCreation.js
index ef085fb7d63b0f1740d47b9ec01b1dec24c57283..3d2c604fd333d3f7eca6a1f98abcb3594a9f0760 100644
--- a/src/AnnotationCreation.js
+++ b/src/AnnotationCreation.js
@@ -171,7 +171,6 @@ class AnnotationCreation extends Component {
   componentDidMount() {
       const mediaVideo = VideosReferences.get(this.props.windowId);
       this.setState({ mediaVideo }); // Update mediaVideo in state
-      console.log('MEDIAVIDEO COMPONENTDIDMOUNT:', mediaVideo)
   }
   /** */
   handleImgChange(newUrl, imgRef) {
@@ -430,8 +429,6 @@ class AnnotationCreation extends Component {
     }
 
     const isVideoDataLoaded = mediaVideo && mediaVideo.video && !isNaN(mediaVideo.video.duration) && mediaVideo.video.duration > 0;
-    console.log(isVideoDataLoaded)
-
 
     return (
       <CompanionWindow
diff --git a/src/CanvasListItem.js b/src/CanvasListItem.js
index 34f857d041d6e09b64a3f0c4b335d8526ce0a1ee..ddd839997a0195ef4b7cf381c6eb3c19e11a57e0 100644
--- a/src/CanvasListItem.js
+++ b/src/CanvasListItem.js
@@ -20,8 +20,6 @@ class CanvasListItem extends Component {
     this.handleMouseHover = this.handleMouseHover.bind(this);
     this.handleDelete = this.handleDelete.bind(this);
     this.handleEdit = this.handleEdit.bind(this);
-
-    console.log(props.ref);
   }
 
   /** */
@@ -86,9 +84,6 @@ class CanvasListItem extends Component {
 
   /** */
   render() {
-    const { children } = this.props;
-    console.log('canvaslistItem children :', this.props.children);
-    console.log('this.props : ', ...this.props);
     const { isHovering } = this.state;
     const { windowViewType, toggleSingleCanvasDialogOpen } = this.context;
 
@@ -130,7 +125,6 @@ class CanvasListItem extends Component {
         <li
           {...this.props} // eslint-disable-line react/jsx-props-no-spreading
         >
-          {/* {children} */}
         </li>
       </div>
     );
diff --git a/src/HMSInput.js b/src/HMSInput.js
index 68a92c6b686386361c5846f735c9caa07fe7ca24..583f8513f2fd377bff51f767f1d459a61591b72d 100644
--- a/src/HMSInput.js
+++ b/src/HMSInput.js
@@ -26,15 +26,12 @@ const StyledRoot = styled('div')({
 
 function HMSInput({ seconds, onChange }) {
   const [hms, setHms] = useState(secondsToHMSarray(0));
-  console.log('hms', hms);
 
   useEffect(() => {
       if(seconds != null) {
-  console.log('seconds', seconds);
     setHms(secondsToHMSarray(seconds));
       }
   }, [seconds]);
-    console.log('seconds AFTER USEEFFECT', seconds);
 
   const someChange = (ev) => {
     const newState = secondsToHMSarray(Number(ev.target.value));