fix build
Main daploy / deploy (push) Failing after 9s

This commit is contained in:
2024-11-21 08:46:06 +02:00
parent 0b2bbcb1b2
commit 3bba6a5007
14 changed files with 21 additions and 8214 deletions
@@ -16,7 +16,11 @@ watch(
() => sectionRef.value && props.isNextActiveSection,
(isNextActiveSection) => {
if (isNextActiveSection) {
sectionRef.value?.querySelector('input[type="text"]')?.focus()
const input = sectionRef.value?.querySelector('input[type="text"]')
if (input instanceof HTMLInputElement) {
input.focus()
}
sectionRef.value?.scrollIntoView({ behavior: 'smooth' })
}
},