diff --git a/internal_packages/account-sidebar/lib/components/account-switcher.cjsx b/internal_packages/account-sidebar/lib/components/account-switcher.cjsx index 40843e043..7ca88d043 100644 --- a/internal_packages/account-sidebar/lib/components/account-switcher.cjsx +++ b/internal_packages/account-sidebar/lib/components/account-switcher.cjsx @@ -139,7 +139,10 @@ class AccountSwitcher extends React.Component classnames = "" classnames += "open" if @state.showing selected = @_selectedItem() - items = [@_makeItem()].concat @props.accounts.map(@_makeItem) + if @props.accounts.length is 1 + items = @props.accounts.map(@_makeItem) + else + items = [@_makeItem()].concat @props.accounts.map(@_makeItem)