From f4ea2011cef135f05041446d138bd2cad2102f6c Mon Sep 17 00:00:00 2001 From: yashmantri Date: Tue, 24 Sep 2024 16:14:51 +0530 Subject: [PATCH] TP-85529 | Location reference Id fix --- android/app/build.gradle | 4 +- package.json | 4 +- .../form/components/AddressSelection.tsx | 81 +++++++++++-------- 3 files changed, 53 insertions(+), 36 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 88faae25..64044d15 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 = 196 -def VERSION_NAME = "2.13.8" +def VERSION_CODE = 197 +def VERSION_NAME = "2.13.9" android { ndkVersion rootProject.ext.ndkVersion diff --git a/package.json b/package.json index df9df9fd..85aed337 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "AV_APP", - "version": "2.13.8", - "buildNumber": "196", + "version": "2.13.9", + "buildNumber": "197", "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 86a21667..4111a736 100644 --- a/src/components/form/components/AddressSelection.tsx +++ b/src/components/form/components/AddressSelection.tsx @@ -125,38 +125,55 @@ const AddressSelection: React.FC = (props) => { } if (!addresses?.length) { return ( - - - - - No nearby geolocations found - - - - - - - Retry - + + + validateInput(data, question.metadata.validators) }} + render={({ field: { onChange, value } }) => ( + + + + + No nearby geolocations found + + + + + + + Retry + + + )} + name={controllerName} + /> ); }