From 8ac2a6cac3c611df87d97ec69a998b476c8e22bb Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 26 May 2026 21:36:11 +0000 Subject: [PATCH] ui(wallet): drop the "Your Wallets" header from the wallet list MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It was redundant context — the screen title already says "Wallet" and the cards underneath are clearly the user's. Removing the section header reclaims vertical space on the main list. Kept the Spacer above the first card so the cards don't bump against the OnchainSection divider. Leaving the wallet_your_wallets string resource in place so Crowdin translations stay valid; removing it would force a fan-out across every locale file for no functional gain. --- .../amethyst/ui/screen/loggedIn/wallet/WalletScreen.kt | 5 ----- 1 file changed, 5 deletions(-) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/wallet/WalletScreen.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/wallet/WalletScreen.kt index af4d4758eb..8236a93f37 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/wallet/WalletScreen.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/wallet/WalletScreen.kt @@ -235,11 +235,6 @@ private fun MultiWalletHomeContent( ) { item { Spacer(modifier = Modifier.height(8.dp)) - Text( - text = stringRes(R.string.wallet_your_wallets), - style = MaterialTheme.typography.titleMedium, - fontWeight = FontWeight.SemiBold, - ) } itemsIndexed(walletInfoList, key = { _, info -> info.walletId }) { index, walletInfo ->