"Limited" → "Limited discount" on launch-special meta

Matches buy page (v0.2.0:37). Disambiguates the limit so buyers
don't read it as a license-count cap.
This commit is contained in:
Grant
2026-05-11 18:36:37 -05:00
parent fcfbb95354
commit 3eb8ea5129
+1 -1
View File
@@ -1187,7 +1187,7 @@ fmt.<span class="f">Printf</span>(<span class="s">"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');