From d4db56376155e40b3ee4065a1dd6ccf949b2d467 Mon Sep 17 00:00:00 2001 From: Innei Date: Tue, 15 Oct 2024 00:18:31 +0800 Subject: [PATCH] fix: transform `feedId` to `inboxId` Signed-off-by: Innei --- .../modules/feed-column/sort-by/SortByAlphabeticalList.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/renderer/src/modules/feed-column/sort-by/SortByAlphabeticalList.tsx b/apps/renderer/src/modules/feed-column/sort-by/SortByAlphabeticalList.tsx index a9f0e352e..ff4842b6f 100644 --- a/apps/renderer/src/modules/feed-column/sort-by/SortByAlphabeticalList.tsx +++ b/apps/renderer/src/modules/feed-column/sort-by/SortByAlphabeticalList.tsx @@ -75,8 +75,8 @@ export const SortByAlphabeticalListList = ({ view, data }: ListListProps) => { export const SortByAlphabeticalInboxList = ({ view, data }: ListListProps) => { return (
- {Object.keys(data).map((inboxId) => ( - + {Object.keys(data).map((feedId) => ( + ))}
)