diff --git a/src/lib/components/PostHeader.svelte b/src/lib/components/PostHeader.svelte index 86144f8..df1a2b7 100644 --- a/src/lib/components/PostHeader.svelte +++ b/src/lib/components/PostHeader.svelte @@ -28,7 +28,7 @@ joinedLinks = communityLinks.join(''); } - $: post.author.fetchProfile(); + $: if (post.author.profile === undefined) post.author.fetchProfile().then(() => (post = post)); // Await the communities onMount(async () => {