We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5388160 commit 9f23b64Copy full SHA for 9f23b64
src/devtools/Explorer.tsx
@@ -118,7 +118,7 @@ export const DefaultRenderer: Renderer = ({
118
subEntryPages.length === 1 ? (
119
<SubEntries>
120
{subEntries.map(entry => (
121
- <HandleEntry entry={entry} />
+ <HandleEntry key={entry.label} entry={entry} />
122
))}
123
</SubEntries>
124
) : (
@@ -141,7 +141,7 @@ export const DefaultRenderer: Renderer = ({
141
{expandedPages.includes(index) ? (
142
143
{entries.map(entry => (
144
145
146
147
) : null}
0 commit comments