fix: various typos (grouped in to separate commits) ()

This commit is contained in:
luzpaz 2025-05-09 09:10:34 -04:00 committed by GitHub
parent ccc2b191dd
commit b1e1362246
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 8 additions and 8 deletions
web/src/lib/components/photos-page

View file

@ -299,7 +299,7 @@
// allowing next to be at least 1 may cause percent to go negative, so ensure positive percentage
scrubBucketPercent = Math.max(0, top / (bucketHeight * maxScrollPercent));
// compensate for lost precision/rouding errors advance to the next bucket, if present
// compensate for lost precision/rounding errors advance to the next bucket, if present
if (scrubBucketPercent > 0.9999 && i + 1 < bucketsLength - 1) {
scrubBucket = assetStore.buckets[i + 1];
scrubBucketPercent = 0;