Gustavo Luigi 2024-01-11 16:23:31 -03:00
parent 5f31ebe112
commit 69e1af0ba2
1 changed files with 1 additions and 1 deletions

View File

@ -262,7 +262,7 @@
const observer = new IntersectionObserver(entries => {
entries.forEach(entry => {
if (entry.isIntersecting) {
setTimeout(() => nameField.focus(), 1500);
setTimeout(() => nameField.focus(), 2000);
observer.unobserve(targetElement);
}
});