fix: restore swipeStartX declaration (newline eaten in prior edit)
All checks were successful
Release / Test backend (push) Successful in 47s
Release / Check ui (push) Successful in 1m41s
Release / Docker (push) Successful in 5m34s
Release / Gitea Release (push) Successful in 33s

This commit is contained in:
root
2026-04-08 21:23:23 +05:00
parent bae363893b
commit 04e63414a3

View File

@@ -105,7 +105,8 @@
autoAdvanceSeed++; autoAdvanceSeed++;
} }
// ── Swipe handling ─────────────────────────────────────────────────────── let swipeStartX = 0; // ── Swipe handling ───────────────────────────────────────────────────────
let swipeStartX = 0;
function onSwipeStart(e: TouchEvent) { function onSwipeStart(e: TouchEvent) {
swipeStartX = e.touches[0].clientX; swipeStartX = e.touches[0].clientX;
} }