animated_routes_react
animated_routes_react copied to clipboard
`=` should be `===`
On line 24 in project_item.js
you should use ===
instead of a single =
. =
results in over writing the id.
...
let project = projects.filter(p => {
return (p.id === this.props.match.params.id);
});
...