diff --git a/packages/pl-fe/src/features/group/group-gallery.tsx b/packages/pl-fe/src/features/group/group-gallery.tsx index 045a3ab5f..906bce18b 100644 --- a/packages/pl-fe/src/features/group/group-gallery.tsx +++ b/packages/pl-fe/src/features/group/group-gallery.tsx @@ -34,7 +34,7 @@ const GroupGallery: React.FC = (props) => { } = useGroupMedia(groupId); const attachments = statuses.reduce((result, status) => { - result.push(...status.media_attachments.map((a) => ({ ...a, status: status as any, account: status.account }))); + result.push(...status.media_attachments.map((a) => ({ ...a, status, account: status.account }))); return result; }, []);