From f7997742c7a365ce854ec2549de1e49b937dbe3b Mon Sep 17 00:00:00 2001 From: iris Date: Sun, 30 Aug 2026 14:25:54 +0200 Subject: [PATCH] =?UTF-8?q?agent=20links:=20revert=20screen's=20VS16=20?= =?UTF-8?q?=E2=80=94=20renders=20as=20a=20stray=20char=20for=20mara?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The variation selector was meant to force emoji presentation, but her font renders it as a separate unrenderable glyph instead of being silently consumed. Screen's bare codepoint was already a real emoji before this PR touched it — didn't need changing at all. --- hive-agent/src/web_ui/state.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hive-agent/src/web_ui/state.rs b/hive-agent/src/web_ui/state.rs index b621c2fa..3b4cf6a3 100644 --- a/hive-agent/src/web_ui/state.rs +++ b/hive-agent/src/web_ui/state.rs @@ -324,7 +324,7 @@ fn agent_links(label: &str, gui_enabled: bool) -> Vec { if gui_enabled { links.push(AgentLink { url: "screen.html".to_owned(), - icon: "🖥️".to_owned(), + icon: "🖥".to_owned(), label: "screen".to_owned(), kind: AgentLinkKind::Container, });