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.