From 15ef106eb54c1d2277042979e3c0d6caa3c50cab Mon Sep 17 00:00:00 2001 From: Laan Tungir Date: Thu, 25 Jun 2026 20:55:02 -0400 Subject: [PATCH] Fix feed2.html: add missing walletGetBalance and walletGetMints imports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit feed2.html was missing walletGetBalance and walletGetMints in both the init-ndk.mjs import and the initPostCards call. Without these, the zap rail selector and capability badges couldn't function — handleZapClick couldn't resolve zap capabilities or show the rail toggle. --- www/feed2.html | 4 ++++ www/js/version.json | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/www/feed2.html b/www/feed2.html index aa99144..5982f58 100644 --- a/www/feed2.html +++ b/www/feed2.html @@ -155,6 +155,8 @@ walletPayInvoice, walletSendNutzap, walletFetchMintList, + walletGetBalance, + walletGetMints, getRelayData, getUserSettings, patchUserSettings, @@ -331,6 +333,8 @@ import { initPostCards } from './js/post-interactions2.mjs'; walletPayInvoice, walletSendNutzap, walletFetchMintList, + walletGetBalance, + walletGetMints, getRelayData, getUserSettings, patchUserSettings, diff --git a/www/js/version.json b/www/js/version.json index a685f7d..de749d2 100644 --- a/www/js/version.json +++ b/www/js/version.json @@ -1,5 +1,5 @@ { - "VERSION": "v0.7.30", - "VERSION_NUMBER": "0.7.30", - "BUILD_DATE": "2026-06-26T00:48:38.325Z" + "VERSION": "v0.7.31", + "VERSION_NUMBER": "0.7.31", + "BUILD_DATE": "2026-06-26T00:55:02.798Z" }