Skip to content

Commit

Permalink
fix(tooltip): remove console.log usage in Tooltip component
Browse files Browse the repository at this point in the history
No reason for it to be kept

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
  • Loading branch information
tcitworld committed Jan 4, 2024
1 parent a35138d commit bbf8161
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions packages/oruga-next/src/components/tooltip/Tooltip.vue
Original file line number Diff line number Diff line change
Expand Up @@ -181,14 +181,9 @@ const autoPosition = ref(props.position);
/** update autoPosition on prop change */
watch(
() => props.position,
(v) => {
autoPosition.value = v;
console.log(v);
},
(v) => autoPosition.value = v,
);
watch(autoPosition, (v) => console.log(v));
// --- Event Handler ---
const contentRef = ref<HTMLElement>();
Expand Down

0 comments on commit bbf8161

Please sign in to comment.