diff --git a/public/js/app.js b/public/js/app.js index a7cbffe..44fef42 100644 --- a/public/js/app.js +++ b/public/js/app.js @@ -92,7 +92,7 @@ document.addEventListener('alpine:init', () => { moveActiveItem(evt, amount, defaultValue) { const len = this.items.length; if (len === 0) - returrn; + return; let item = this.activeItem === null ? defaultValue : (this.activeItem + amount) % len;