mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-30 10:58:23 -05:00
hides community rows from homepage
This commit is contained in:
parent
8a05a73edc
commit
4cc420632c
1 changed files with 21 additions and 20 deletions
|
@ -302,26 +302,27 @@ class SplashPresentation extends React.Component { // eslint-disable-line react/
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
rows.push(
|
// Temporarily hide community rows
|
||||||
<Box
|
// rows.push(
|
||||||
key="community_most_remixed_projects"
|
// <Box
|
||||||
title={this.props.intl.formatMessage({id: 'splash.communityRemixing'})}
|
// key="community_most_remixed_projects"
|
||||||
>
|
// title={this.props.intl.formatMessage({id: 'splash.communityRemixing'})}
|
||||||
<LegacyCarousel
|
// >
|
||||||
showRemixes
|
// <LegacyCarousel
|
||||||
items={shuffle(this.props.featuredGlobal.community_most_remixed_projects)}
|
// showRemixes
|
||||||
/>
|
// items={shuffle(this.props.featuredGlobal.community_most_remixed_projects)}
|
||||||
</Box>,
|
// />
|
||||||
<Box
|
// </Box>,
|
||||||
key="community_most_loved_projects"
|
// <Box
|
||||||
title={this.props.intl.formatMessage({id: 'splash.communityLoving'})}
|
// key="community_most_loved_projects"
|
||||||
>
|
// title={this.props.intl.formatMessage({id: 'splash.communityLoving'})}
|
||||||
<LegacyCarousel
|
// >
|
||||||
showLoves
|
// <LegacyCarousel
|
||||||
items={shuffle(this.props.featuredGlobal.community_most_loved_projects)}
|
// showLoves
|
||||||
/>
|
// items={shuffle(this.props.featuredGlobal.community_most_loved_projects)}
|
||||||
</Box>
|
// />
|
||||||
);
|
// </Box>
|
||||||
|
// );
|
||||||
|
|
||||||
return rows;
|
return rows;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue