From 9d605fdce92a4ed5a17c750a59fb84b910aa1791 Mon Sep 17 00:00:00 2001 From: Shaz Amjad Date: Wed, 28 Apr 2021 02:13:56 +1000 Subject: [PATCH] Updates input height on edit post (#5349) --- app/screens/edit_post/edit_post.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/screens/edit_post/edit_post.js b/app/screens/edit_post/edit_post.js index ab55d1db4..ea7b68c90 100644 --- a/app/screens/edit_post/edit_post.js +++ b/app/screens/edit_post/edit_post.js @@ -250,7 +250,7 @@ export default class EditPost extends PureComponent { } } - const height = Platform.OS === 'android' ? (deviceHeight / 2) - 40 : (deviceHeight / 2); + const height = Platform.OS === 'android' ? (deviceHeight / 2) - 40 : (deviceHeight / 2) - 30; const autocompleteStyles = [ style.autocompleteContainer, {flex: autocompleteVisible ? 1 : 0},