Skip to content

Commit

Permalink
fix(website): remove unnecessary check that break Gatsby’s SSR
Browse files Browse the repository at this point in the history
  • Loading branch information
JalilArfaoui committed Dec 22, 2021
1 parent f23fa2c commit fc09b64
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -268,9 +268,7 @@ const ContributorsSection = styled(
<StyledSectionTitle>
{t('home.contributors.title')}
</StyledSectionTitle>
{t('home.contributors.subTitle') !== '' && (
<SubTitle>{t('home.contributors.subTitle')}</SubTitle>
)}
<SubTitle>{t('home.contributors.subTitle')}</SubTitle>
<ContributorAvatars>
{contributors.map<React.ReactNode>((contributor, index) => {
// eslint-disable-next-line camelcase
Expand Down

0 comments on commit fc09b64

Please sign in to comment.