Skip to content

Commit

Permalink
fix: timeline is missing context
Browse files Browse the repository at this point in the history
  • Loading branch information
ImLunaHey committed Jan 3, 2025
1 parent 3f4cf16 commit 96e808e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/Timeline.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,9 @@ export function Timeline({ columnNumber = 1 }: { columnNumber: number }) {
return <div ref={ref} {...props} className="flex flex-col gap-2" />;
}),
}}
itemContent={(index: number) => <PostCard key={posts[index]?.post.uri} post={posts[index]?.post} />}
itemContent={(index: number) => (
<PostCard key={posts[index]?.post.uri} post={posts[index]?.post} context={posts[index]?.feedContext} />
)}
/>
</div>
</div>
Expand Down

0 comments on commit 96e808e

Please sign in to comment.