From b2f56a7fff678e4ab5880a22f7b9a0503a2e9f6f Mon Sep 17 00:00:00 2001 From: natjms Date: Sun, 18 Apr 2021 12:20:50 -0300 Subject: [PATCH] Fix warning about using CSS property objectFit in posts.js --- src/components/posts/post.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/posts/post.js b/src/components/posts/post.js index 52b9b29..a2d433e 100644 --- a/src/components/posts/post.js +++ b/src/components/posts/post.js @@ -54,7 +54,7 @@ const PostImageJsx = (props) => { flex: 1, width: SCREEN_WIDTH, height: getAutoHeight(props.width, props.height, SCREEN_WIDTH), - objectFit: "cover" + // objectFit: "cover" } } /> };