From 639bab0466bb19c4ea28ef86e697537a7a345cac Mon Sep 17 00:00:00 2001 From: Obiajulu-gif Date: Sat, 25 Jul 2026 18:41:44 +0100 Subject: [PATCH] fix(#43): stop hardcoding a wallet list that can diverge from the kit src/lib/stellar.ts initialises StellarWalletsKit with allowAllModules(), so the kit's actual supported-wallet list changes with SDK updates independent of this component. The static "Use Freighter, xBull, LOBSTR, or any Stellar-compatible wallet" copy could go stale in either direction (a supported wallet like Rabet/Hana missing from the list, or a delisted wallet still advertised). Replaced it with copy that accurately represents the kit's dynamic nature instead of an enumerated list, per the issue's first acceptance-criteria option. "Connect Wallet" behavior (calling connect()) is unchanged. --- src/components/ConnectWalletPrompt.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ConnectWalletPrompt.tsx b/src/components/ConnectWalletPrompt.tsx index 448ad56..362e2cc 100644 --- a/src/components/ConnectWalletPrompt.tsx +++ b/src/components/ConnectWalletPrompt.tsx @@ -13,7 +13,7 @@ export function ConnectWalletPrompt({ message = 'Connect your wallet to continue 🔒

{message}

- Use Freighter, xBull, LOBSTR, or any Stellar-compatible wallet. + Any Stellar-compatible wallet is supported — Freighter, xBull, LOBSTR, and more.