Skip to content

Commit

Permalink
fix: transform feedId to inboxId
Browse files Browse the repository at this point in the history
Signed-off-by: Innei <tukon479@gmail.com>
  • Loading branch information
Innei committed Oct 14, 2024
1 parent 3680f66 commit d4db563
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ export const SortByAlphabeticalListList = ({ view, data }: ListListProps) => {
export const SortByAlphabeticalInboxList = ({ view, data }: ListListProps) => {
return (
<div>
{Object.keys(data).map((inboxId) => (
<InboxItem key={inboxId} inboxId={inboxId} view={view} />
{Object.keys(data).map((feedId) => (
<InboxItem key={feedId} inboxId={feedId.replace("inbox-", "")} view={view} />
))}
</div>
)
Expand Down

0 comments on commit d4db563

Please sign in to comment.