Skip to content

Commit

Permalink
fix(OverviewTemplate): Empty grid listing state
Browse files Browse the repository at this point in the history
  • Loading branch information
timglaser committed Jun 24, 2020
1 parent 9767c4e commit af7aba0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/templates/OverviewTemplate.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const OverviewTemplate = ({ data }) => {
<SEO title={title} description={description} />
<PageTitle>{title}</PageTitle>
<MDXContainer>{body}</MDXContainer>
{guides?.nodes.length && (
{!!guides?.nodes.length && (
<GuideListing>
<GuideListing.List>
{guides?.nodes.map(({ frontmatter }, index) => (
Expand Down

0 comments on commit af7aba0

Please sign in to comment.