diff --git a/buildFlavor/field/buildNumber.txt b/buildFlavor/field/buildNumber.txt index f71beab7..06690d5e 100644 --- a/buildFlavor/field/buildNumber.txt +++ b/buildFlavor/field/buildNumber.txt @@ -1 +1 @@ -237 \ No newline at end of file +238 \ No newline at end of file diff --git a/buildFlavor/field/buildVersion.txt b/buildFlavor/field/buildVersion.txt index 5b840738..1c94d3d1 100644 --- a/buildFlavor/field/buildVersion.txt +++ b/buildFlavor/field/buildVersion.txt @@ -1 +1 @@ -2.18.0 \ No newline at end of file +2.18.1 \ No newline at end of file diff --git a/buildFlavor/tele/buildNumber.txt b/buildFlavor/tele/buildNumber.txt index 0e92c3c0..5160788e 100644 --- a/buildFlavor/tele/buildNumber.txt +++ b/buildFlavor/tele/buildNumber.txt @@ -1 +1 @@ -306 \ No newline at end of file +307 \ No newline at end of file diff --git a/buildFlavor/tele/buildVersion.txt b/buildFlavor/tele/buildVersion.txt index 9d3f2f5b..4bffb298 100644 --- a/buildFlavor/tele/buildVersion.txt +++ b/buildFlavor/tele/buildVersion.txt @@ -1 +1 @@ -100.2.2 \ No newline at end of file +100.2.3 \ No newline at end of file diff --git a/src/components/form/components/RadioButton.tsx b/src/components/form/components/RadioButton.tsx index 0939232a..3d00231f 100644 --- a/src/components/form/components/RadioButton.tsx +++ b/src/components/form/components/RadioButton.tsx @@ -1,5 +1,5 @@ import React, { useEffect, useMemo, useState } from 'react'; -import { View } from 'react-native'; +import { StyleSheet, View } from 'react-native'; import { Control, Controller, UseFormSetValue } from 'react-hook-form'; import { useSelector } from 'react-redux'; @@ -147,7 +147,7 @@ const RadioButton: React.FC = (props) => { key={option} id={option as string} value={options[option]?.text} - containerStyle={[GenericStyles.whiteBackground]} + containerStyle={[GenericStyles.whiteBackground, styles.mr6]} /> ))} @@ -186,4 +186,10 @@ const RadioButton: React.FC = (props) => { ); }; +const styles = StyleSheet.create({ + mr6: { + marginRight: 6, + }, +}); + export default RadioButton; diff --git a/src/screens/addressGeolocation/SkipTracingContainer.tsx b/src/screens/addressGeolocation/SkipTracingContainer.tsx index 8f6f3ac5..7786bb72 100644 --- a/src/screens/addressGeolocation/SkipTracingContainer.tsx +++ b/src/screens/addressGeolocation/SkipTracingContainer.tsx @@ -35,7 +35,7 @@ const SkipTracingAddressContainer: React.FC = ({ ]} > - No skip tracing found + No customer outreach address found ); } diff --git a/src/screens/addressGeolocation/constant.ts b/src/screens/addressGeolocation/constant.ts index 6aa9fef1..6baba577 100644 --- a/src/screens/addressGeolocation/constant.ts +++ b/src/screens/addressGeolocation/constant.ts @@ -15,7 +15,7 @@ export const PRIMARY_SOURCE_MAPPING = { [PrimarySourcesType.AVS_V1]: 'AVS_V1', [PrimarySourcesType.KARZA]: 'Karza', [PrimarySourcesType['Field App']]: 'COSMOS', - [PrimarySourcesType.SKIP_TRACING]: 'Skip Tracing', + [PrimarySourcesType.SKIP_TRACING]: 'Customer outreach', [PrimarySourcesType.ACCOUNT_AGGREGATOR]: 'Account Aggregator', }; @@ -30,7 +30,7 @@ export const ADDRESSES_TABS = [ }, { key: 'skipTracing', - label: 'Skip Tracing', + label: 'Customer Outreach', }, ]; diff --git a/src/screens/caseDetails/interface.ts b/src/screens/caseDetails/interface.ts index 16b18188..73106994 100644 --- a/src/screens/caseDetails/interface.ts +++ b/src/screens/caseDetails/interface.ts @@ -430,7 +430,7 @@ export interface INearbyCaseItemObj extends CaseDetail { export enum GeolocationSourceMap { VKYC = 'VKYC', - DATA_SUTRAM = 'Skip Tracing', + DATA_SUTRAM = 'Customer outreach', } export interface Tab {