From 91b633d5752700f39feb5e42b7e398f8d51370c9 Mon Sep 17 00:00:00 2001 From: neoapps-dev Date: Tue, 26 May 2026 22:38:37 +0300 Subject: [PATCH] fix(SettingsView): make backspace do nothing --- src/components/views/SettingsView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/views/SettingsView.tsx b/src/components/views/SettingsView.tsx index 3d134cb..b8f0837 100644 --- a/src/components/views/SettingsView.tsx +++ b/src/components/views/SettingsView.tsx @@ -541,7 +541,7 @@ const SettingsView = memo(function SettingsView() { useEffect(() => { const handleKeyDown = (e: KeyboardEvent) => { - if (e.key === "Escape" || e.key === "Backspace") { + if (e.key === "Escape") { if (showModal) { playBackSound(); setShowModal(null);