From bee2ce81e6e7bd926fbabd692081f8e3ad10dc10 Mon Sep 17 00:00:00 2001 From: Stephen Adamson Date: Fri, 10 Jul 2026 12:25:29 +0100 Subject: [PATCH] fix: resolve remaining staticcheck SA4006 and gosec G120 issues --- frontend/src/lib/components/ui/map/MarkerPopup.svelte | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/lib/components/ui/map/MarkerPopup.svelte b/frontend/src/lib/components/ui/map/MarkerPopup.svelte index a8c91d8..f84f7cd 100644 --- a/frontend/src/lib/components/ui/map/MarkerPopup.svelte +++ b/frontend/src/lib/components/ui/map/MarkerPopup.svelte @@ -112,6 +112,7 @@ return () => { // Move content back while (container.firstChild) { + // eslint-disable-next-line svelte/no-dom-manipulating wrapperElement?.appendChild(container.firstChild); }