Skip to content

Commit 89979f5

Browse files
author
Brian Vaughn
committed
Fixed unrelated key warning in DevTools test shell
1 parent 17e3832 commit 89979f5

File tree

1 file changed

+1
-1
lines changed
  • packages/react-devtools-shared/src/devtools/views

1 file changed

+1
-1
lines changed

‎packages/react-devtools-shared/src/devtools/views/TabBar.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ export default function TabBar({
9191
<Fragment>
9292
{tabs.map(tab => {
9393
if (tab === null) {
94-
return <div className={styles.VRule} />;
94+
return <div key="VRule" className={styles.VRule} />;
9595
}
9696

9797
const {icon, id, label, title} = tab;

0 commit comments

Comments
 (0)