Skip to content

Commit

Permalink
removing some stray console.log outputs (#581)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephiescastle authored Aug 28, 2024
1 parent 9460b67 commit 67f4789
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion packages/vue/src/components/BlockDialog/BlockDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ export default defineComponent({
this.dialog = this.$refs.DialogRef
? new A11yDialog(this.$refs.DialogRef as HTMLElement)
: null
console.log(this.dialog)
if (this.dialog) {
this.dialog
.on('show', () => {
Expand Down
1 change: 0 additions & 1 deletion packages/vue/src/components/NavDesktop/NavDesktop.vue
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,6 @@ export default defineComponent({
if (isActive) {
mixinUpdateGlobalChildren(sectionLinks)
}
console.log(isActive)
return isActive
}
return false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ const clearSearch = () => {
}
const submitSearch = () => {
emit('submitForm')
console.log(searchQuery.value)
router.push({ path: '/search', query: searchQuery.value })
}
</script>
Expand Down

0 comments on commit 67f4789

Please sign in to comment.