From f8aed03efc2bbd9e5c1caca2abc5f1ada6abfba9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Chlo=C3=A9=20JACOB?= <chloe.jacob4@etu.unistra.fr> Date: Mon, 27 Mar 2023 23:25:18 +0200 Subject: [PATCH] missed these two --- src/views/FeedView.tsx | 1 - src/views/PostView.tsx | 1 - 2 files changed, 2 deletions(-) diff --git a/src/views/FeedView.tsx b/src/views/FeedView.tsx index 027928e..6531d08 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 0597973..503fcbf 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} -- GitLab