From 8f45242da40a1d7589acf9657c8b3b06f45c56c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?marcin=20miko=C5=82ajczak?= Date: Sat, 26 Oct 2024 17:44:44 +0200 Subject: [PATCH] pl-fe: Remove any MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: marcin mikołajczak --- packages/pl-fe/src/features/group/group-gallery.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/pl-fe/src/features/group/group-gallery.tsx b/packages/pl-fe/src/features/group/group-gallery.tsx index 045a3ab5f4..906bce18bf 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; }, []);