Grab user data from web server

This commit is contained in:
2018-02-03 17:20:58 -07:00
parent 3b5509000d
commit a1c80c70cb
4 changed files with 43 additions and 25 deletions
+2 -2
View File
@@ -5,11 +5,11 @@ import { Link } from 'react-router-dom';
class Category extends Component {
render() {
const data = this.props.data;
const user = data.user;
const user = this.props.user;
const match = this.props.match;
const category = data.categories.find((x) =>
x.slug == match.params.category
x.slug === match.params.category
);
return (