diff --git a/web/zebra-spaces.html b/web/zebra-spaces.html
index c46f6bf..91a1de6 100644
--- a/web/zebra-spaces.html
+++ b/web/zebra-spaces.html
@@ -683,19 +683,6 @@ function renderVideoTile(kind, pubHex, stream, opts){
const meta = document.createElement('div'); meta.className = 'screen-meta';
const who = document.createElement('span'); who.textContent = k.labelPrefix+': '+label;
const ctl = document.createElement('span');
- /* local preview never offers unmute — playing our own captured audio
- * back would feed straight into our mic */
- if (!local){
- const unmute = document.createElement('button'); unmute.className = 'small';
- unmute.textContent = 'unmute audio';
- unmute.onclick = () => {
- video.muted = !video.muted;
- if (video.muted) video.setAttribute('muted', ''); else video.removeAttribute('muted');
- unmute.textContent = video.muted ? 'unmute audio' : 'mute audio';
- try { video.play().catch(e => logLine('err','play after unmute: '+e.message)); } catch(_){}
- };
- ctl.appendChild(unmute);
- }
const pop = document.createElement('button'); pop.className = 'small';
pop.textContent = 'fullscreen'; pop.onclick = () => video.requestFullscreen && video.requestFullscreen().catch(()=>{});
ctl.appendChild(pop);
@@ -1899,8 +1886,8 @@ logLine('', 'ready — pick a handle, type a rendezvous code, enter the space');