From 47e46f70da187aaf62c0430259948ae825294cf7 Mon Sep 17 00:00:00 2001 From: Jungsub Ryoo Date: Tue, 29 Oct 2024 15:38:40 +0900 Subject: [PATCH] fix(client): add id information for hash (pagination) (#34) --- src/main/front/src/components/FeedCard.jsx | 2 +- src/main/front/src/components/FeedCardGallery.jsx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/front/src/components/FeedCard.jsx b/src/main/front/src/components/FeedCard.jsx index 2dfb019..98d32f2 100644 --- a/src/main/front/src/components/FeedCard.jsx +++ b/src/main/front/src/components/FeedCard.jsx @@ -119,7 +119,7 @@ export default function FeedCard({ loading, item, watchSeen = false }) { subheader={formatTimestamp(item.createdAt)} /> - {item.files && } + {item.files && } { +const FeedCardGallery = ({ images = [], id }) => { const filteredImages = images.filter((url) => isImage(url) || isVideo(url)); if (filteredImages.length === 0) return <>; return (
- +