From 32882ebb03b9405159d5a872da6f35c6fc5b6537 Mon Sep 17 00:00:00 2001 From: cooldev900 Date: Wed, 20 Dec 2023 09:05:18 -0500 Subject: [PATCH] update height in ios --- src/components/AddressSearch/getListViewHeight.native.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/AddressSearch/getListViewHeight.native.js b/src/components/AddressSearch/getListViewHeight.native.js index fd9ab12ffc27..1e05e4359919 100644 --- a/src/components/AddressSearch/getListViewHeight.native.js +++ b/src/components/AddressSearch/getListViewHeight.native.js @@ -6,7 +6,7 @@ * @returns {Object} styles for list view. */ function getListViewHeight(windowHeight, locationErrorCode, isOffline) { - let restHeight = locationErrorCode ? 320 + 64 : 320; + let restHeight = locationErrorCode ? 330 + 64 : 330; if (isOffline) { restHeight += 50; }