Skip to content

Commit

Permalink
chore: use index as key on line breaks
Browse files Browse the repository at this point in the history
  • Loading branch information
jpedroschmitz committed Mar 22, 2022
1 parent 1c734cf commit a3aeb4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react-renderer/src/RenderText.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ function serialize(text: string) {
const splitText = text.split('\n');

return splitText.map((line, index) => (
<React.Fragment key={line}>
<React.Fragment key={index}>
{line}
{index === splitText.length - 1 ? null : <br />}
</React.Fragment>
Expand Down

0 comments on commit a3aeb4f

Please # to comment.