Skip to content

Commit

Permalink
remove debugging logs
Browse files Browse the repository at this point in the history
  • Loading branch information
IcedTea2K committed Jan 9, 2024
1 parent f7d205a commit 924296b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/components/lab-notebook/TableOfContents.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ onMounted(() => {
entries.forEach((entry) => {
if (entry.isIntersecting) {
activeElementId.value = entry.target.innerHTML.trim()
console.log(activeElementId.value)
}
})
}
Expand Down
1 change: 0 additions & 1 deletion src/views/TeamView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ const handleClick = (inc: number) => {
finalState.value = inc < 0 ? 'translate-x-full opacity-0' : '-translate-x-full opacity-0'
changingTeam.value = false
}
console.log(initialState)
}
let currTeam: Ref<string> = ref('All')
Expand Down

0 comments on commit 924296b

Please sign in to comment.