{#if loaded}
{#each apps.filter((it) => (shown ? true : !hiddenAppsIds.includes(it._id))) as app}
{
dispatch('active', app)
}}
notify={false}
on:visible={(res) => {
if (res.detail === undefined) return
if (res.detail) showApplication(app)
else hideApplication(app)
}}
/>
{/each}
{/if}