{$_('discover.popularPeople')}
{#await fetchTrendingActorProps()} {:then props} {#each props as prop (prop.tmdbId)} {/each} {/await}
{$_('discover.upcomingMovies')}
{#await fetchUpcomingMovies()} {:then props} {#each props as prop (prop.tmdbId)} {/each} {/await}
{$_('discover.upcomingSeries')}
{#await fetchUpcomingSeries()} {:then props} {#each props as prop (prop.tmdbId)} {/each} {/await}
{$_('discover.genres')}
{#each Object.values(genres) as genre (genre.tmdbGenreId)} {/each}
{$_('discover.newDigitalReleases')}
{#await fetchDigitalReleases()} {:then props} {#each props as prop (prop.tmdbId)} {/each} {/await}
{$_('discover.streamingNow')}
{#await fetchNowStreaming()} {:then props} {#each props as prop (prop.tmdbId)} {/each} {/await}
{$_('discover.TVNetworks')}
{#each Object.values(networks) as network (network.tmdbNetworkId)} {/each}