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 47fd2f5 commit 0422a00Copy full SHA for 0422a00
packages/react-devtools-shared/src/devtools/views/Components/InspectedElementView.js
@@ -174,9 +174,8 @@ export default function InspectedElementView({
174
{showStack ? <StackTraceView stack={stack} /> : null}
175
{showOwnersList &&
176
owners?.map(owner => (
177
- <>
+ <Fragment key={owner.id}>
178
<OwnerView
179
- key={owner.id}
180
displayName={owner.displayName || 'Anonymous'}
181
hocDisplayNames={owner.hocDisplayNames}
182
environmentName={
@@ -190,7 +189,7 @@ export default function InspectedElementView({
190
189
{owner.stack != null && owner.stack.length > 0 ? (
191
<StackTraceView stack={owner.stack} />
192
) : null}
193
- </>
+ </Fragment>
194
))}
195
196
{rootType !== null && (
0 commit comments