diff --git a/app/routes/app._index/components/latest-post-time-line.tsx b/app/routes/app._index/components/latest-post-time-line.tsx index ef120fb..b40ca16 100644 --- a/app/routes/app._index/components/latest-post-time-line.tsx +++ b/app/routes/app._index/components/latest-post-time-line.tsx @@ -13,11 +13,9 @@ export default function LatestPostTimeLine({ }) { return (
- {postContents.map((postContent, index) => { + {postContents.map((postContent) => { return ( -
- -
+ ); })}
diff --git a/app/routes/components/post-display.tsx b/app/routes/components/post-display.tsx index 49a897d..87b67fe 100644 --- a/app/routes/components/post-display.tsx +++ b/app/routes/components/post-display.tsx @@ -38,12 +38,10 @@ export default function PostDisplay({ const reactionName = reactionNames[index]; return ( -
- - - - -
+ + + + ); })}