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') } }