diff --git a/tui/composer.go b/tui/composer.go index 8cc828314c08d36639f6e44e74de65ec9cd08c80..39ae50d967d245228351658aa5d9ed4d5d3f9e3c 100644 --- a/tui/composer.go +++ b/tui/composer.go @@ -447,7 +447,7 @@ func (m *Composer) View() string { for i, acc := range m.accounts { display := acc.Email if acc.Name != "" { - display = fmt.Sprintf("%s (%s)", acc.Name, acc.Email) + display = fmt.Sprintf("%s (%s)", acc.Name, acc.FetchEmail) } if i == m.selectedAccountIdx { accountList.WriteString(selectedItemStyle.Render(fmt.Sprintf("> %s", display)))