Skip to content

Commit 506242b

Browse files
committed
fix: lint
1 parent b9c6ddf commit 506242b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/incremental-rendering/incremental-rendering.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,8 +171,8 @@ function IncrementalRendering() {
171171
<Text bold color="yellow">
172172
Live Logs (only 1-2 lines update per frame):
173173
</Text>
174-
{logLines.map((line, index) => (
175-
<Text key={`log-${index}-${line}`} color="green">
174+
{logLines.map(line => (
175+
<Text key={line} color="green">
176176
{line}
177177
</Text>
178178
))}

0 commit comments

Comments
 (0)