Adjust debounce to 50ms

This commit is contained in:
Jared Miller 2025-12-25 10:45:36 -05:00
parent 1dc0fffbbe
commit 8418681f89
Signed by: shmup
GPG key ID: 22B5C6D66A38B06C

View file

@ -62,7 +62,7 @@ searchInput?.addEventListener("input", (event) => {
const text = item.textContent.toLowerCase();
item.style.display = text.includes(query) ? "" : "none";
});
}, 150);
}, 50);
});
// OCR/formatting errors from epub conversion