Skip to content

Commit

Permalink
website: remove console.log.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove committed Aug 23, 2023
1 parent d28c365 commit b1c4677
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion website/src/components/Preview/Hyperlink.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ function useScrollSpy(ids: string[], options: IntersectionObserverInit) {
observer.current = new IntersectionObserver((entries) => {
entries.forEach((entry) => {
if (entry?.isIntersecting) {
console.log('entry.target::', entry.target.id, entry?.intersectionRatio, entry.target, entry);
setActiveId(entry.target.id);
}
});
Expand Down

0 comments on commit b1c4677

Please sign in to comment.