chore: Tidy up

This commit is contained in:
Bouncey
2018-11-08 15:05:43 +00:00
committed by mrugesh mohapatra
parent 602065be0b
commit d417ec9936
3 changed files with 15 additions and 16 deletions

View File

@@ -155,17 +155,17 @@ function Profile({ user, isSessionUser }) {
website={website}
yearsTopContributor={yearsTopContributor}
/>
{showHeatMap ? <HeatMap calendar={calendar} streak={streak} /> : null}
{showCerts ? <Certifications username={username} /> : null}
{showPortfolio ? <Portfolio portfolio={portfolio} /> : null}
{showTimeLine ? (
<Timeline
className='timelime-container'
completedMap={completedChallenges}
username={username}
/>
) : null}
</Grid>
{showHeatMap ? <HeatMap calendar={calendar} streak={streak} /> : null}
{showCerts ? <Certifications username={username} /> : null}
{showPortfolio ? <Portfolio portfolio={portfolio} /> : null}
{showTimeLine ? (
<Timeline
className='timelime-container'
completedMap={completedChallenges}
username={username}
/>
) : null}
</Layout>
);
}