TP-34976 | fixes

This commit is contained in:
Aman Chaturvedi
2023-10-04 17:22:45 +05:30
parent 2ad5ee7db1
commit bafe6f3928
2 changed files with 24 additions and 27 deletions

View File

@@ -46,6 +46,7 @@ import { GenericFunctionArgs, GenericType } from '../../common/GenericTypes';
import { setDocumentInteractionId, setDocumentsToUpload } from '../../reducer/feedbackImagesSlice';
import NudgeSuspiciousFeedbackBottomSheet from './NudgeSuspiciousFeedbackBottomSheet';
import { API_STATUS_CODE } from '../utlis/apiHelper';
import NavigationHeader, { Icon } from '../../../RN-UI-LIB/src/components/NavigationHeader';
interface IWidget {
route: {
@@ -384,16 +385,8 @@ const Widget: React.FC<IWidget> = (props) => {
return (
<Layout>
<SafeAreaView style={[GenericStyles.silverBackground, GenericStyles.fill]}>
<View style={[styles.header, GenericStyles.row, { alignItems: 'center' }]}>
<TouchableHighlight
style={styles.iconContainer}
underlayColor={COLORS.HIGHLIGHTER.DARK_BUTTON}
onPress={handleCloseIconPress}
testID="close-form-btn"
>
<CloseIcon color={COLORS.BACKGROUND.PRIMARY} />
</TouchableHighlight>
<View style={[GenericStyles.ml10, GenericStyles.w100]}>
<NavigationHeader
title={
<Heading
type={'h5'}
bold
@@ -402,11 +395,13 @@ const Widget: React.FC<IWidget> = (props) => {
>
Add feedback for {caseData?.customerInfo?.customerName || caseData?.customerName}
</Heading>
{isJourneyNameExists ? (
<Text light>{templateData?.journey?.[journey].name}</Text>
) : null}
</View>
</View>
}
subTitle={
isJourneyNameExists ? <Text light>{templateData?.journey?.[journey].name}</Text> : null
}
icon={Icon.close}
onBack={handleCloseIconPress}
/>
<ScrollView
contentContainerStyle={[
GenericStyles.p16,

View File

@@ -209,21 +209,23 @@ const AddressGeolocation: React.FC<IAddressGeolocation> = ({ route: routeParams
handlePageRouting={handleRouting}
loanAccountNumber={loanAccountNumber}
/>
<View style={[GenericStyles.p16, styles.btnContainer]}>
<Button
title="New address"
style={GenericStyles.w100}
onPress={handleNewAddressCta}
leftIcon={
<View style={GenericStyles.mr10}>
<PlusIcon />
</View>
}
/>
</View>
</View>
</SuspenseLoader>
</ScrollView>
{!isLoading ? (
<View style={[GenericStyles.p16, styles.btnContainer, GenericStyles.elevation10]}>
<Button
title="New address"
style={GenericStyles.w100}
onPress={handleNewAddressCta}
leftIcon={
<View style={GenericStyles.mr10}>
<PlusIcon />
</View>
}
/>
</View>
) : null}
</View>
</Layout>
);