Thread viewer for Bluesky

removed some todos

+2 -3
-1
src/components/posts/BlockedPostContent.svelte
··· 19 19 20 20 {#if post.embed} 21 21 <EmbedComponent embed={post.embed} /> 22 - <!-- TODO: what embeds to show? --> 23 22 {/if}
+1 -1
src/pages/NotificationsPage.svelte
··· 55 55 </header> 56 56 57 57 {#each posts as post (post.uri)} 58 - <!-- TODO: #if post.parent --> 58 + <!-- note: posts here are loaded via getPosts, so they don't include full parent/thread info --> 59 59 {#if post.parentReference} 60 60 <FeedPostParent uri={post.parentReference.uri} /> 61 61 {/if}
+1 -1
src/pages/QuotesPage.svelte
··· 62 62 </header> 63 63 64 64 {#each posts as post (post.uri)} 65 - <!-- TODO: #if post.parent --> 65 + <!-- note: posts here are loaded via getPosts, so they don't include full parent/thread info --> 66 66 {#if post.parentReference} 67 67 <FeedPostParent uri={post.parentReference.uri} /> 68 68 {/if}