fix: transform `feedId` to `inboxId`
Signed-off-by: Innei <tukon479@gmail.com>
This commit is contained in:
parent
3680f66a70
commit
d4db563761
|
|
@ -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>
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in New Issue