From fcfbb95354ae2618327af376537aafcb93bb9f98 Mon Sep 17 00:00:00 2001 From: Grant Date: Mon, 11 May 2026 18:30:46 -0500 Subject: [PATCH] Launch-special remaining: drop the total Dynamic tier-card JS now renders "Limited: N remaining" instead of "Limited: N of M remaining". Matches the buy page (v0.2.0:36); the operator's initial launch volume stays private. --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 2b46b4c..f0fb01a 100644 --- a/index.html +++ b/index.html @@ -1187,7 +1187,7 @@ fmt.Printf("licensed for %s, expires %s\n if (typeof remaining === 'number' && remaining > 0) { const meta = document.createElement('div'); meta.className = 'tier-launch-meta'; - meta.textContent = 'Limited: ' + remaining + ' of ' + (fd.max_uses || 0) + ' remaining'; + meta.textContent = 'Limited: ' + remaining + ' remaining'; card.appendChild(meta); } const orig = document.createElement('div');