Loading profile...
{#if currentUserPubkey && currentUserPubkey !== decodePubkey($page.params.pubkey)}
{/if}
{#if activeTab === 'posts'}
{#if posts.length === 0}
No posts yet.
{:else}
{#each posts as post (post.id)}
{/each}
{/if}
{:else if activeTab === 'responses'}
{#if responses.length === 0}
No responses yet.
{:else}
{#each responses as response (response.id)}
{/each}
{/if}
{:else if activeTab === 'interactions'}
{#if interactionsWithMe.length === 0}
No interactions with you yet.
{:else}
{#each interactionsWithMe as interaction (interaction.id)}
{/each}
{/if}
{/if}