Skip to content

Commit

Permalink
fix: unused entries
Browse files Browse the repository at this point in the history
  • Loading branch information
DIYgod committed May 30, 2024
1 parent cc2f92f commit 0bd63b0
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/renderer/src/pages/(external)/feed/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,13 @@ export function Component() {
className="mr-2 size-8 shrink-0"
/>
<h1>{feed.data.feed.title}</h1>
{entries.data?.pages.map((page) =>
page.data?.map((entry) => (
<div key={entry.entries.id}>
<h2>{entry.entries.title}</h2>
</div>
)),
)}
</div>
)}
</>
Expand Down

0 comments on commit 0bd63b0

Please sign in to comment.