Skip to content

Commit

Permalink
fix: console log 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
Temple2001 committed Aug 14, 2024
1 parent 84344b1 commit 8d9561a
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/components/ScrollEvent/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,8 @@ export default function ScrollEvent() {
entries.forEach((entry) => {
if (entry.intersectionRatio <= 0) {
(headerWords as HTMLElement).style.opacity = "1";
console.log(headerWords);
} else {
(headerWords as HTMLElement).style.opacity = "0";
console.log(headerWords);
}
});
});
Expand Down

0 comments on commit 8d9561a

Please sign in to comment.