fix: key error in Advisories

This commit is contained in:
RadoslavDimchev 2023-08-29 12:55:00 +03:00
parent 737378e010
commit 7a7277e789

View File

@ -16,7 +16,11 @@ const AdvisoriesContent = ({ title, content }: AdvisoriesContentProps) => {
<YStack space={'$6'}>
{content.length &&
content.map(row => {
return <Text size={15}>{row}</Text>
return (
<Text key={row} size={15}>
{row}
</Text>
)
})}
<Text size={15}>
<Link