NTP-30459 | Skip Tracing to Customer outreach text changes (#1108)

This commit is contained in:
Aman Singh
2025-02-24 19:18:58 +05:30
committed by GitHub
8 changed files with 16 additions and 10 deletions

View File

@@ -1 +1 @@
237
238

View File

@@ -1 +1 @@
2.18.0
2.18.1

View File

@@ -1 +1 @@
306
307

View File

@@ -1 +1 @@
100.2.2
100.2.3

View File

@@ -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<IRadioButton> = (props) => {
key={option}
id={option as string}
value={options[option]?.text}
containerStyle={[GenericStyles.whiteBackground]}
containerStyle={[GenericStyles.whiteBackground, styles.mr6]}
/>
))}
</RadioGroup>
@@ -186,4 +186,10 @@ const RadioButton: React.FC<IRadioButton> = (props) => {
);
};
const styles = StyleSheet.create({
mr6: {
marginRight: 6,
},
});
export default RadioButton;

View File

@@ -35,7 +35,7 @@ const SkipTracingAddressContainer: React.FC<IAddressContainer> = ({
]}
>
<CustomLocationIcon />
<Text style={[styles.textContainer, styles.noSkipTracingAddressText]}>No skip tracing found</Text>
<Text style={[styles.textContainer, styles.noSkipTracingAddressText]}>No customer outreach address found</Text>
</View>
);
}

View File

@@ -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',
},
];

View File

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