From 07b2b4696f48efe8e04ec3fce053f4b78f914a73 Mon Sep 17 00:00:00 2001 From: Dorian Date: Fri, 10 Jul 2026 17:17:47 +0100 Subject: [PATCH] =?UTF-8?q?feat(ui):=20wallet=20settings=20tabs=20?= =?UTF-8?q?=E2=80=94=20Cashu,=20Fedimint,=20Channels=20(rightmost)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Fable 5 --- neode-ui/src/components/WalletSettingsModal.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/neode-ui/src/components/WalletSettingsModal.vue b/neode-ui/src/components/WalletSettingsModal.vue index 38f5a666..bd477b56 100644 --- a/neode-ui/src/components/WalletSettingsModal.vue +++ b/neode-ui/src/components/WalletSettingsModal.vue @@ -164,11 +164,11 @@ const props = defineProps<{ show: boolean }>() const emit = defineEmits<{ close: []; changed: [] }>() const tabs = [ + { key: 'cashu' as const, label: 'Cashu' }, + { key: 'fedimint' as const, label: 'Fedimint' }, { key: 'channels' as const, label: 'Channels' }, - { key: 'cashu' as const, label: 'Cashu Mints' }, - { key: 'fedimint' as const, label: 'Fedimint Federations' }, ] -const activeTab = ref<'channels' | 'cashu' | 'fedimint'>('channels') +const activeTab = ref<'cashu' | 'fedimint' | 'channels'>('cashu') // Backed by wallet.fedimint-list / -join / -leave (fedimint-clientd HTTP bridge). // Join degrades gracefully with a clear error if the Fedimint client app isn't installed.