Skip to content

Commit

Permalink
Update keys
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasheartman committed Jan 19, 2024
1 parent 73c4780 commit 33a6310
Showing 1 changed file with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,10 @@ export const ChangesToOverwrite: React.FC<{
)
.split('\n')
.map((line, index) => (
<code key={index}>
{line + '\n'}
<code
key={`${property}${line}${index}`}
>
{`${line}\n`}
</code>
))}
</del>
Expand All @@ -132,8 +134,10 @@ export const ChangesToOverwrite: React.FC<{
)
.split('\n')
.map((line, index) => (
<code key={index}>
{line + '\n'}
<code
key={`${property}${line}${index}`}
>
{`${line}\n`}
</code>
))}
</ins>
Expand Down

0 comments on commit 33a6310

Please sign in to comment.