diff --git a/android/app/build.gradle b/android/app/build.gradle index cb315a7c..8803f93e 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 = 194 -def VERSION_NAME = "2.13.6" +def VERSION_CODE = 195 +def VERSION_NAME = "2.13.7" android { ndkVersion rootProject.ext.ndkVersion diff --git a/package.json b/package.json index 47acc333..35a74d2b 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "AV_APP", - "version": "2.13.6", - "buildNumber": "194", + "version": "2.13.7", + "buildNumber": "195", "private": true, "scripts": { "android:dev": "yarn move:dev && react-native run-android", diff --git a/src/screens/allCases/ListItem.tsx b/src/screens/allCases/ListItem.tsx index 1948ab95..7fe62155 100644 --- a/src/screens/allCases/ListItem.tsx +++ b/src/screens/allCases/ListItem.tsx @@ -194,7 +194,7 @@ const ListItem: React.FC = (props) => { const distanceMapOfNearbyCases = useAppSelector((state) => state.nearbyCasesSlice.caseReferenceIdToDistanceMap) || {}; const selectedTab = useAppSelector((state) => state?.nearbyCasesSlice?.sortTabSelected); - const distanceOfCaseItem = distanceMapOfNearbyCases.get(caseListItemDetailObj?.id); + const distanceOfCaseItem = distanceMapOfNearbyCases.get(caseListItemDetailObj?.caseReferenceId); const isNearestCaseView = selectedTab === TABS_KEYS.NEAREST_CASE; const showInVisitPlanTag = isCaseItemPinnedMainView && !caseCompleted; const widthStyle = {