From f4f059578debd491be098d47f4809f879acc45a0 Mon Sep 17 00:00:00 2001 From: Lucas Gabriel Vuotto Date: Mon, 28 Apr 2025 16:00:25 +0000 Subject: [PATCH] site: typo: returrn -> return --- public/js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;