NTP-8765 | Cosmos-changes (#992)

This commit is contained in:
Aman Singh
2024-10-23 00:01:47 +05:30
committed by GitHub
5 changed files with 12 additions and 11 deletions

View File

@@ -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

View File

@@ -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",

View File

@@ -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);

View File

@@ -24,10 +24,10 @@ export const ADDRESSES_TABS = [
key: 'address',
label: 'Addresses',
},
{
key: 'geolocation',
label: 'Geolocations',
},
// {
// key: 'geolocation',
// label: 'Geolocations',
// },
];
export enum AddressGeolocationTabEnum {

View File

@@ -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;
};