Fix looping over developer notes
This commit is contained in:
parent
d8136d90c3
commit
b92b2fad1d
1 changed files with 2 additions and 2 deletions
|
|
@ -110,8 +110,8 @@ const UpdatesPage = () => {
|
|||
<h2>Developer notes</h2>
|
||||
{updates('versions.1.2.0.notes')
|
||||
.split('\n')
|
||||
.map((item) => (
|
||||
<p>{item}</p>
|
||||
.map((item, i) => (
|
||||
<p key={`note-${i}`}>{item}</p>
|
||||
))}
|
||||
<LinkItem
|
||||
className="discord constrained update"
|
||||
|
|
|
|||
Loading…
Reference in a new issue