From e099dfe858b933a9a032ab1f8fddc56fbd805322 Mon Sep 17 00:00:00 2001 From: Johannes Date: Wed, 8 Oct 2025 21:43:48 +0200 Subject: [PATCH] fix: ignore the Alt key --- client/src/typing-panel.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/client/src/typing-panel.ts b/client/src/typing-panel.ts index db6e9bb..3ba175a 100644 --- a/client/src/typing-panel.ts +++ b/client/src/typing-panel.ts @@ -63,6 +63,7 @@ export class TypingPanel extends HTMLElement { private processChar(char: string) { if (char === "Shift") return; + if (char === "Alt") return; if (char === "Backspace") { if (this.index === 0) return;