diff --git a/public/assets/my.js b/public/assets/my.js
index b455f92..75b8c06 100644
--- a/public/assets/my.js
+++ b/public/assets/my.js
@@ -545,8 +545,9 @@
const who = [];
if (me.email) who.push(me.email);
- if (me.address) who.push('wallet ' + me.address.slice(0, 8) + '…' + me.address.slice(-6) + '');
- else who.push('no wallet linked yet');
+ // members kept asking whether the wallet was really connected (Marty, 2026-09-12): say it, with a green check
+ if (me.address) who.push('✓Wallet connected ' + me.address.slice(0, 8) + '…' + me.address.slice(-6) + '');
+ else who.push('!No wallet connected yet (link one below)');
if (me.memberId) who.push('on-chain member #' + me.memberId + ''
+ (me.onchainSponsorId ? ', sponsored by #' + me.onchainSponsorId : ''));
else if (me.sponsorId) who.push('invited by member #' + me.sponsorId);
diff --git a/public/my.html b/public/my.html
index 1044511..6f68605 100644
--- a/public/my.html
+++ b/public/my.html
@@ -915,7 +915,7 @@
-
+