Fix warning, hide images in quotes

This commit is contained in:
Jon Staab
2025-02-05 08:53:26 -08:00
parent af171bd2c9
commit 3e214881a3
3 changed files with 8 additions and 3 deletions
+5
View File
@@ -1,4 +1,5 @@
<script lang="ts">
import {onDestroy} from "svelte"
import {type Instance} from "tippy.js"
import type {NativeEmoji} from "emoji-picker-element/shared"
import {between, throttle} from "@welshman/lib"
@@ -26,6 +27,10 @@
})
let popover: Instance | undefined = $state()
onDestroy(() => {
popover = undefined
})
</script>
<svelte:document onmousemove={onMouseMove} />