{#each Object.values(RecipientType) as type} {@const users = Array.from(recipients.values()).filter((user) => user.type == type)} {#if users.length}
{$store.strings[type]}:
{#each users as user (user.id)}
{#if user.isvalid} {:else}
{/if}
{user.fullname}
{/each}
{/if} {/each}