Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
syuilo committed May 15, 2023
1 parent c066013 commit f4e6d73
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions packages/frontend/src/components/MkTooltip.vue
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,8 @@ onMounted(() => {
setPosition();
const loop = () => {
loopHandler = window.requestAnimationFrame(() => {
setPosition();
loop();
});
setPosition();
loopHandler = window.requestAnimationFrame(loop);
};
loop();
Expand Down

1 comment on commit f4e6d73

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Chromatic detects changes. Please review the changes on Chromatic.

Please sign in to comment.