From 6a9da8e2d8cd603942ee8003142f676e8df27a4d Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Sat, 24 Jun 2023 15:35:50 -0700 Subject: [PATCH] Remove console.log --- components/common/DialogContent/index.tsx | 5 ----- components/raids/RaidItem/index.tsx | 1 - 2 files changed, 6 deletions(-) diff --git a/components/common/DialogContent/index.tsx b/components/common/DialogContent/index.tsx index 55c14c64..63a4fcc5 100644 --- a/components/common/DialogContent/index.tsx +++ b/components/common/DialogContent/index.tsx @@ -93,11 +93,6 @@ const DialogContent = React.forwardRef(function Dialog( const footer = props.footerref if (footer && footer.current) { - console.log( - scrollable, - scrollable?.clientHeight, - scrollable?.scrollHeight - ) if (scrollable && scrollable.clientHeight >= scrollable.scrollHeight) { footer.current.style.boxShadow = `${boxShadowBase} rgba(0, 0, 0, 0)` footer.current.style.borderTopColor = `rgba(0, 0, 0, 0)` diff --git a/components/raids/RaidItem/index.tsx b/components/raids/RaidItem/index.tsx index 329eb4e7..63e60d65 100644 --- a/components/raids/RaidItem/index.tsx +++ b/components/raids/RaidItem/index.tsx @@ -49,7 +49,6 @@ const RaidItem = React.forwardRef>( if (event.key === 'ArrowUp' || event.key === 'ArrowDown') { event.preventDefault() if (onArrowKeyPressed) { - console.log(event.key) onArrowKeyPressed(event.key === 'ArrowUp' ? 'Up' : 'Down') } }