diff --git a/android/app/build.gradle b/android/app/build.gradle index 8a382048..1de5d618 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -134,8 +134,8 @@ def reactNativeArchitectures() { return value ? value.split(",") : ["armeabi-v7a", "x86", "x86_64", "arm64-v8a"] } -def VERSION_CODE = 206 -def VERSION_NAME = "2.14.6" +def VERSION_CODE = 207 +def VERSION_NAME = "2.14.7" android { ndkVersion rootProject.ext.ndkVersion diff --git a/package.json b/package.json index 8854b95b..4ddc9341 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "AV_APP", - "version": "2.14.6", - "buildNumber": "206", + "version": "2.14.7", + "buildNumber": "207", "private": true, "scripts": { "android:dev": "yarn move:dev && react-native run-android", diff --git a/src/components/form/components/AddressSelection.tsx b/src/components/form/components/AddressSelection.tsx index ac6f300d..d0a57018 100644 --- a/src/components/form/components/AddressSelection.tsx +++ b/src/components/form/components/AddressSelection.tsx @@ -198,6 +198,7 @@ const AddressSelection: React.FC = (props) => { orientation="vertical" > {addresses?.map((address) => { + if(isGeolocation) return <>; const addressLabel = isGeolocation ? (address as IGeolocation)?.tag : getAddressString(address as Address); diff --git a/src/screens/addressGeolocation/constant.ts b/src/screens/addressGeolocation/constant.ts index e12e2c9a..19de6d7d 100644 --- a/src/screens/addressGeolocation/constant.ts +++ b/src/screens/addressGeolocation/constant.ts @@ -24,10 +24,10 @@ export const ADDRESSES_TABS = [ key: 'address', label: 'Addresses', }, - { - key: 'geolocation', - label: 'Geolocations', - }, + // { + // key: 'geolocation', + // label: 'Geolocations', + // }, ]; export enum AddressGeolocationTabEnum { diff --git a/src/screens/caseDetails/ViewAddressSection.tsx b/src/screens/caseDetails/ViewAddressSection.tsx index 7b68d9fe..590c9d86 100644 --- a/src/screens/caseDetails/ViewAddressSection.tsx +++ b/src/screens/caseDetails/ViewAddressSection.tsx @@ -22,9 +22,9 @@ const ViewAddressSection = ({ caseId }: IViewAddressSection) => { const { addressString, loanAccountNumber, customerReferenceId, addressStringType } = caseDetail; const getTabName = () => { - if (addressStringType === AddressTabType.GEO_LOCATION) { - return AddressGeolocationTabEnum.GEOLOCATION; - } + // if (addressStringType === AddressTabType.GEO_LOCATION) { + // return AddressGeolocationTabEnum.GEOLOCATION; + // } return AddressGeolocationTabEnum.ADDRESS; };