Skip to content

Commit

Permalink
Remove space from link of category headers on issue page (#212)
Browse files Browse the repository at this point in the history
  • Loading branch information
emilgoldsmith authored Sep 16, 2017
1 parent 38ffdb3 commit c064b4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/IssueController.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ export default class IssueController extends FalcorController {
// Render nothing if this.props.articles is empty
_.map((issueData.categories || []), category => (
<div key={category.name} className="issue__category">
<Link to={`/category/ ${category.slug}`}>
<Link to={`/category/${category.slug}`}>
<h2 className="section-header">{category.name}</h2>
</Link>
<ArticleList articles={category.articles} />
Expand Down

0 comments on commit c064b4b

Please sign in to comment.