NTP-8765 | Cosmos-changes (#992)
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -198,6 +198,7 @@ const AddressSelection: React.FC<IAddressSelection> = (props) => {
|
||||
orientation="vertical"
|
||||
>
|
||||
{addresses?.map((address) => {
|
||||
if(isGeolocation) return <></>;
|
||||
const addressLabel = isGeolocation
|
||||
? (address as IGeolocation)?.tag
|
||||
: getAddressString(address as Address);
|
||||
|
||||
@@ -24,10 +24,10 @@ export const ADDRESSES_TABS = [
|
||||
key: 'address',
|
||||
label: 'Addresses',
|
||||
},
|
||||
{
|
||||
key: 'geolocation',
|
||||
label: 'Geolocations',
|
||||
},
|
||||
// {
|
||||
// key: 'geolocation',
|
||||
// label: 'Geolocations',
|
||||
// },
|
||||
];
|
||||
|
||||
export enum AddressGeolocationTabEnum {
|
||||
|
||||
@@ -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;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user