Skip to content

Commit

Permalink
Replace paragraphs with divs in Head component
Browse files Browse the repository at this point in the history
This caused an issue on the download page with nested paragraphs, which
are forbidden.
  • Loading branch information
tusbar committed Jul 18, 2018
1 parent 35745d6 commit d485966
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion components/head.js
Expand Up @@ -12,7 +12,9 @@ const Head = ({children, title, icon}) => (
<div className='icon'>{icon}</div>
<div className='text'>
<h1>{title}</h1>
<p className='description'>{children}</p>
<div className='description'>
{children}
</div>
</div>
</div>
</Container>
Expand Down

0 comments on commit d485966

Please sign in to comment.