diff --git a/packages/email/template-components/template-footer.tsx b/packages/email/template-components/template-footer.tsx index 95964f351..5311aaf4c 100644 --- a/packages/email/template-components/template-footer.tsx +++ b/packages/email/template-components/template-footer.tsx @@ -1,4 +1,5 @@ import { Trans } from '@lingui/react/macro'; +import { Fragment } from 'react'; import { Link, Section, Text } from '../components'; import { useBranding } from '../providers/branding'; @@ -44,10 +45,10 @@ export const TemplateFooter = ({ isDocument = true, reportUrl }: TemplateFooterP {branding.brandingCompanyDetails.split('\n').map((line, idx) => { return ( - <> + {idx > 0 &&
} {line} - +
); })}