{#if $modalStore.length > 0} {#key $modalStore}
{#if $modalStore[0].type !== 'component'}
{#if $modalStore[0]?.title}
{@html $modalStore[0].title}
{/if} {#if $modalStore[0]?.body}
{@html $modalStore[0].body}
{/if} {#if $modalStore[0]?.image && typeof $modalStore[0]?.image === 'string'}
{/if} {#if $modalStore[0].type === 'alert'} {:else if $modalStore[0].type === 'confirm'} {:else if $modalStore[0].type === 'prompt'}
{/if}
{:else}
{#if currentComponent?.slot}
{@html currentComponent?.slot}
{:else}
{/if}
{/if}
{/key} {/if}