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

View file

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