Remove mail txt from val

This commit is contained in:
Alicia Sykes 2023-08-24 12:51:01 +01:00
parent 5e755c1dc2
commit d13db8d438

View File

@ -27,7 +27,7 @@ const MailConfigCard = (props: {data: any, title: string, actionButtons: any }):
}
{ mailServer.mailServices.length > 0 && <Heading as="h3" color={colors.primary} size="small">External Mail Services</Heading>}
{ mailServer.mailServices && mailServer.mailServices.map((service: any, index: number) => (
<Row lbl={service.provider} val={service.value} key={index} />
<Row lbl={service.provider} title={service.value} val="" key={index} />
))
}