Skip to content

Commit

Permalink
Fix undefined variable on suspense fixture (#13325)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicosommi authored and gaearon committed Aug 5, 2018
1 parent 08e3226 commit 43a137d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ function Repositories({id}) {
padding: 0,
margin: 0,
}}>
{repos.map(review => <Repository key={repo.name} {...repo} />)}
{repos.map(repo => <Repository key={repo.name} {...repo} />)}
</ul>
);
}
Expand Down

0 comments on commit 43a137d

Please sign in to comment.