From 11011c6c510139237283a9524e43ebf872954474 Mon Sep 17 00:00:00 2001 From: martbost Date: Tue, 8 Sep 2026 12:28:06 -0500 Subject: [PATCH] Put the price on each Buy button to prevent wrong-package buys Testers were tapping the highlighted "Most Popular" $50 tile's Buy thinking it was a general buy, and getting a $50 charge they couldn't afford. Each tile already buys its own package; label the button "Buy $20" etc. so it's unambiguous which package a tap purchases. Co-Authored-By: Claude Opus 4.8 --- public/assets/my.js | 2 +- public/my.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/public/assets/my.js b/public/assets/my.js index 339b211..ff8e273 100644 --- a/public/assets/my.js +++ b/public/assets/my.js @@ -1214,7 +1214,7 @@ + '
' + (bonus > 0 ? '+' + bonus.toLocaleString() + ' bonus credits' : ' ') + '
' + '
' + (p.costWei ? IAP.fmtPol(p.costWei) + ' POL right now' : 'paused') + '
' + ''; + + (p.costWei ? '' : ' disabled') + '>Buy $' + Math.round(p.priceCents / 100) + ''; wrap.appendChild(div); } wrap.querySelectorAll('button[data-id]').forEach(b => b.addEventListener('click', async () => { diff --git a/public/my.html b/public/my.html index 1b1c705..1a58743 100644 --- a/public/my.html +++ b/public/my.html @@ -696,7 +696,7 @@ - +