Fixed an increment bug in sidebar for fiber-commits

This commit is contained in:
Brian Vaughn 2019-06-08 09:22:30 -07:00
parent 2d48401346
commit a2f469d742
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ export default function SidebarSelectedFiberInfo(_: Props) {
});
const listItems = [];
for (let i = 0; i < commitIndices.length; i += 2) {
for (let i = 0; i < commitIndices.length; i++) {
const commitIndex = commitIndices[i];
const { duration, timestamp } = profilerStore.getCommitData(