{{#if remove}}
  <form class="account-hub__list">
    {{#each members-list}}
      {{> account-families/account-hub-card remove=../remove pending=../pending}}
    {{/each}}
  </form>
{{else}}
  <div class="account-hub__list">
    {{#each admin-members}}
      {{> account-families/account-hub-card admin=true member-view=../member-view}}
    {{/each}}
    {{#each members-list}}
      {{> account-families/account-hub-card member-view=../member-view}}
    {{/each}}
  </div>
{{/if}}

