summaryrefslogtreecommitdiff
path: root/packages/frontend/src/scripts/use-tooltip.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/frontend/src/scripts/use-tooltip.ts')
-rw-r--r--packages/frontend/src/scripts/use-tooltip.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/frontend/src/scripts/use-tooltip.ts b/packages/frontend/src/scripts/use-tooltip.ts
index a26d08cce7..d9ddfc8b5d 100644
--- a/packages/frontend/src/scripts/use-tooltip.ts
+++ b/packages/frontend/src/scripts/use-tooltip.ts
@@ -3,7 +3,8 @@
* SPDX-License-Identifier: AGPL-3.0-only
*/
-import { Ref, ref, watch, onUnmounted } from 'vue';
+import { ref, watch, onUnmounted } from 'vue';
+import type { Ref } from 'vue';
export function useTooltip(
elRef: Ref<HTMLElement | { $el: HTMLElement } | null | undefined>,