mirror of
https://github.com/status-im/nimbus-gui.git
synced 2025-02-12 11:28:00 +00:00
fix: key error in Advisories
This commit is contained in:
parent
737378e010
commit
7a7277e789
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user