diff --git a/src/renderer/src/components/follow/form.tsx b/src/renderer/src/components/follow/form.tsx index 7f94a991c..35772cfcf 100644 --- a/src/renderer/src/components/follow/form.tsx +++ b/src/renderer/src/components/follow/form.tsx @@ -149,27 +149,30 @@ export function FollowForm({ type }: { type: string }) { {!!item.entries?.length && (
- {item.entries.map((entry) => ( - - {entry?.images?.[0] ? ( - - ) : ( -
- {entry?.title} + {item.entries + .filter((e) => !!e) + .map((entry) => ( + + {entry.images?.[0] ? ( + + ) : ( +
+ {entry.title} +
+ )} +
+ {entry.title}
- )} -
- {entry?.title} -
-
- ))} + + ))}
)}