integration/tagline: do not output a <br> at the end
This commit is contained in:
@@ -53,10 +53,10 @@ export const HomepageContent = ({ tagline, lasuiteApiUrl, serviceId, children }:
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
.map((part, index) => (
|
.map((part, index, arr) => (
|
||||||
<Fragment key={index}>
|
<Fragment key={index}>
|
||||||
{part}
|
{part}
|
||||||
<br />
|
{index !== arr.length - 1 ? <br /> : null}
|
||||||
</Fragment>
|
</Fragment>
|
||||||
))}
|
))}
|
||||||
</>
|
</>
|
||||||
|
|||||||
Reference in New Issue
Block a user