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);