fix(ui): add missing types
Some checks failed
🚀 Lint & Test & Deploy / release (pull_request) Failing after 2m45s

This commit is contained in:
2026-02-09 15:37:37 +01:00
parent b1cbd23542
commit 18802fdc10
5 changed files with 26 additions and 11 deletions

View File

@@ -51,7 +51,7 @@
if (mirror) {
const _points: [number, number, number][] = [];
for (let i = 0; i < points.length / 2; i++) {
const pt = [...getPt(i), i];
const pt = [...getPt(i), i] as [number, number, number];
if (pt[0] > 50) {
pt[0] = 100 - pt[0];
}