TP-81306 | Copy change for call recording nudge (#926)

This commit is contained in:
Aman Chaturvedi
2024-09-09 18:46:41 +05:30
committed by GitHub

View File

@@ -90,7 +90,6 @@ const CustomerNumbers = (props: ICustomerNumbers) => {
<View
style={[
GenericStyles.row,
GenericStyles.alignCenter,
GenericStyles.ph12,
GenericStyles.br8,
GenericStyles.pv12,
@@ -98,9 +97,11 @@ const CustomerNumbers = (props: ICustomerNumbers) => {
styles.lightBlueBackground,
]}
>
<InfoOutlineSmallIcon fillColor={COLORS.TEXT.GREY} />
<View style={styles.infoIcon}>
<InfoOutlineSmallIcon fillColor={COLORS.TEXT.GREY} />
</View>
<Text style={styles.infoNudge}>
Unmask a number by calling it {totalGenuineCallsRequired} times
The number will be visible after {totalGenuineCallsRequired} non-contactable attempts
</Text>
</View>
) : null}
@@ -129,6 +130,10 @@ const styles = StyleSheet.create({
infoNudge: {
color: COLORS.TEXT.GREY_3,
paddingLeft: 4,
lineHeight: 18,
},
infoIcon: {
marginTop: 1,
},
lightBlueBackground: {
backgroundColor: COLORS.BACKGROUND.BLUE_LIGHT_3,