Adjust debounce to 50ms

This commit is contained in:
Jared Miller 2025-12-25 10:45:36 -05:00
parent 9b1c5dcc18
commit 3e23d4c39f
No known key found for this signature in database

View file

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