Skip to content

Commit

Permalink
fix: tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
JackHamer09 committed Dec 20, 2023
1 parent a0c6996 commit ba5406e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions components/header/AccountDropdown.vue
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
<template>
<Menu as="div" class="account-dropdown-container" v-slot="{ open }">
<HeaderHelpModal v-model:opened="helpModalOpened" />
<MenuButton as="template">
<HeaderAccountDropdownButton :toggled="open" />
<MenuButton as="div">
<div ref="addressEl">
<HeaderAccountDropdownButton :toggled="open" />
</div>
</MenuButton>

<transition v-bind="TransitionAlertScaleInOutTransition">
Expand Down Expand Up @@ -83,7 +85,6 @@ const tooltip = useTippy(addressEl, {
content: "Address copied!",
trigger: "manual",
hideOnClick: false,
offset: [0, 25],
});
watch(
copied,
Expand Down

0 comments on commit ba5406e

Please sign in to comment.