{#await loadRepos()} {:then _} {#if $repos.length == 0} {console.log('No Repos')}
{toasts.add({ title: 'Error', description: 'Failed to load repositories', duration: 5000, type: 'error', placement: 'bottom-center', showProgress: true })}
{/if} {#each $repos as repo}

{repo.name}

{repo.language}

{repo.description}
{#if repoImages[repo.name]} repo image {/if}

Last Updated: {timeSince(repo.updated_at)}

{/each}
{/await}