diff --git a/frontend/src/lib/actions/renderCircuitEmbeds.ts b/frontend/src/lib/actions/renderCircuitEmbeds.ts index 0c8af3c..1aae76d 100644 --- a/frontend/src/lib/actions/renderCircuitEmbeds.ts +++ b/frontend/src/lib/actions/renderCircuitEmbeds.ts @@ -18,7 +18,7 @@ function loadCircuitEmbed(div: HTMLElement) { const isDark = document.documentElement.getAttribute('data-theme') === 'dark'; const iframe = document.createElement('iframe'); - iframe.src = `/circuitjs1/circuitjs.html?whiteBackground=${!isDark}`; + iframe.src = `/circuitjs1/circuitjs.html?whiteBackground=${!isDark}&hideMenu=true`; iframe.style.width = '100%'; iframe.style.height = '100%'; iframe.style.border = 'none';