From 3b89dbd4c2eaed850104971ca1e39cf676a44c38 Mon Sep 17 00:00:00 2001 From: Anthony Rogge <49021241+AnthonyRogge@users.noreply.github.com> Date: Fri, 5 Sep 2025 21:26:31 +0100 Subject: [PATCH] fix: self closing tag to avoid warnings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit As per Svelte warning: Self-closing HTML tags for non-void elements are ambiguous — use `
` rather than `
` --- src/lib/CodeMirror.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/CodeMirror.svelte b/src/lib/CodeMirror.svelte index a4ac3dc..22b7784 100644 --- a/src/lib/CodeMirror.svelte +++ b/src/lib/CodeMirror.svelte @@ -158,7 +158,7 @@ {#if is_browser} -
+
{:else}