From 3eb8ea5129216ef7cd29c1f32eac5fcc828a35ff Mon Sep 17 00:00:00 2001 From: Grant Date: Mon, 11 May 2026 18:36:37 -0500 Subject: [PATCH] =?UTF-8?q?"Limited"=20=E2=86=92=20"Limited=20discount"=20?= =?UTF-8?q?on=20launch-special=20meta?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Matches buy page (v0.2.0:37). Disambiguates the limit so buyers don't read it as a license-count cap. --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index f0fb01a..00978ac 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 + ' remaining'; + meta.textContent = 'Limited discount: ' + remaining + ' remaining'; card.appendChild(meta); } const orig = document.createElement('div');