From 8f03b5ed9c707c7022a5bfad444074227c9cb50c Mon Sep 17 00:00:00 2001 From: Jack Storment <88656337+jack-stormentswe@users.noreply.github.com> Date: Thu, 30 Apr 2026 16:21:40 +0200 Subject: [PATCH] :fire: Remove stray debug log in frame-preview load-ref callback (#9258) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `(.log js/console "load-ref" iframe-dom)` was left in the iframe ref callback of `frame-preview`. Mirrors the defect PR #9243 removed from `color-row*` — fires on every ref invocation and pollutes the browser console. Signed-off-by: jack-stormentswe Signed-off-by: Andrey Antukh Co-authored-by: Andrey Antukh --- frontend/src/app/main/ui/frame_preview.cljs | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/src/app/main/ui/frame_preview.cljs b/frontend/src/app/main/ui/frame_preview.cljs index bff3da3abd..de15702d97 100644 --- a/frontend/src/app/main/ui/frame_preview.cljs +++ b/frontend/src/app/main/ui/frame_preview.cljs @@ -37,7 +37,6 @@ load-ref (mf/use-callback (fn [iframe-dom] - (.log js/console "load-ref" iframe-dom) (mf/set-ref-val! iframe-ref iframe-dom) (when (and iframe-dom @last-data*) (-> iframe-dom .-contentWindow .-document .open)