diff options
author | Ajay <[email protected]> | 2024-01-05 22:39:44 -0500 |
---|---|---|
committer | Ajay <[email protected]> | 2024-01-05 22:39:44 -0500 |
commit | 9cfc591dd932d49acd88846288e5674b21140225 (patch) | |
tree | dc53a3d16827a9a77c326bc60771b4759913d294 /src | |
parent | 778d82382052db6a26e46f6b428e7ac49afaf3a8 (diff) | |
download | SponsorBlock-9cfc591dd932d49acd88846288e5674b21140225.tar.gz SponsorBlock-9cfc591dd932d49acd88846288e5674b21140225.zip |
Remove log
Diffstat (limited to 'src')
-rw-r--r-- | src/components/NoticeComponent.tsx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/components/NoticeComponent.tsx b/src/components/NoticeComponent.tsx index 2687640f..e41c3fa7 100644 --- a/src/components/NoticeComponent.tsx +++ b/src/components/NoticeComponent.tsx @@ -455,8 +455,6 @@ class NoticeComponent extends React.Component<NoticeProps, NoticeState> { const deltaX = mouseX - this.state.mouseDownInfo.x; const deltaY = mouseY - this.state.mouseDownInfo.y; - console.log(deltaX, deltaY) - if (deltaX > 0 || deltaY > 0) this.setState({ mouseMoved: true }); const element = this.parentRef.current; |