diff --git a/src/views/FeedView.tsx b/src/views/FeedView.tsx index 027928e29fe86ec1caeda99c6d07b9296e798a94..6531d084f8f7808e6e440409702dd2abcefbe8e3 100644 --- a/src/views/FeedView.tsx +++ b/src/views/FeedView.tsx @@ -81,7 +81,6 @@ return <> username={post.owner.userName} location={post.location} time_post={calculateTime(post.createdAt)} - img={post.resources[0]} caption={post.caption} isLiked={post.viewerHasLiked} likes={post.likesCount} diff --git a/src/views/PostView.tsx b/src/views/PostView.tsx index 059797311d809cdec7754fd0d6dddd1880f0e9ff..503fcbfed0414f274fcbc04bd0f71135a757d26b 100644 --- a/src/views/PostView.tsx +++ b/src/views/PostView.tsx @@ -40,7 +40,6 @@ const PostView = () => { username={post.owner.userName} location={post.location} time_post={calculateTime(post.createdAt)} - img={post.resources[0]} caption={post.caption} isLiked={post.viewerHasLiked} likes={post.likesCount}