fix(SettingsView): make backspace do nothing

This commit is contained in:
neoapps-dev
2026-05-26 22:38:37 +03:00
parent 3bb6a9d5fd
commit 91b633d575
+1 -1
View File
@@ -541,7 +541,7 @@ const SettingsView = memo(function SettingsView() {
useEffect(() => { useEffect(() => {
const handleKeyDown = (e: KeyboardEvent) => { const handleKeyDown = (e: KeyboardEvent) => {
if (e.key === "Escape" || e.key === "Backspace") { if (e.key === "Escape") {
if (showModal) { if (showModal) {
playBackSound(); playBackSound();
setShowModal(null); setShowModal(null);