mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-23 07:38:07 -05:00
don't show shared message forever
This commit is contained in:
parent
8d74726080
commit
3af745eede
2 changed files with 3 additions and 1 deletions
|
@ -10,7 +10,7 @@ $ui-orange-25percent: hsla(35, 90, 55, .25);
|
|||
|
||||
$ui-red: hsla(20, 100%, 55%, 1); /* #FF661A */
|
||||
$ui-red-25percent: hsla(20, 100%, 55%, .25);
|
||||
$ui-green-35percent: rgba(126, 225, 195, 0.35);
|
||||
$ui-green-35percent: rgba(126, 225, 195, .35);
|
||||
|
||||
$ui-light-gray: hsla(0, 0, 98, 1); //#FAFAFA
|
||||
$ui-gray: hsla(0, 0, 95, 1); //#F2F2F2
|
||||
|
|
|
@ -66,6 +66,7 @@ const PreviewPresentation = ({
|
|||
isLoggedIn,
|
||||
isNewScratcher,
|
||||
isShared,
|
||||
justShared,
|
||||
loveCount,
|
||||
loved,
|
||||
modInfo,
|
||||
|
@ -539,6 +540,7 @@ PreviewPresentation.propTypes = {
|
|||
isLoggedIn: PropTypes.bool,
|
||||
isNewScratcher: PropTypes.bool,
|
||||
isShared: PropTypes.bool,
|
||||
justShared: PropTypes.bool,
|
||||
loveCount: PropTypes.number,
|
||||
loved: PropTypes.bool,
|
||||
modInfo: PropTypes.shape({
|
||||
|
|
Loading…
Reference in a new issue