bumped padding of bundles to 6 digits

This commit is contained in:
Joe Lothan 2026-05-25 23:56:13 -04:00
parent 59d4d2c9e0
commit 53205ab661
4 changed files with 5 additions and 5 deletions

View file

@ -60,7 +60,7 @@ function pickBundle() {
// Fetch a bundle JSON
async function fetchBundle(idx) {
const padded = String(idx).padStart(4, "0");
const padded = String(idx).padStart(6, "0");
const resp = await fetch(`tabs/${padded}.json`);
if (!resp.ok) throw new Error(`Failed to fetch bundle ${padded}`);
const data = await resp.json();