mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-27 09:35:56 -05:00
Remove end time for donate banner.
This commit is contained in:
parent
cdee0e74f9
commit
3094602235
1 changed files with 1 additions and 3 deletions
|
@ -12,8 +12,7 @@ const splashActions = require('../../redux/splash.js');
|
||||||
const Page = require('../../components/page/www/page.jsx');
|
const Page = require('../../components/page/www/page.jsx');
|
||||||
const SplashPresentation = require('./presentation.jsx');
|
const SplashPresentation = require('./presentation.jsx');
|
||||||
|
|
||||||
const SCRATCH_WEEK_START_TIME = 1621224000000; // 2021-05-17 00:00:00
|
const SCRATCH_WEEK_START_TIME = 1621224000000; // 2021-05-17 00:00:00 -- No end time for now
|
||||||
const SCRATCH_WEEK_END_TIME = 1621828800000; // 2021-05-24 00:00:00
|
|
||||||
const HOC_START_TIME = 1605484800000; // 2020-11-16 00:00:00
|
const HOC_START_TIME = 1605484800000; // 2020-11-16 00:00:00
|
||||||
const HOC_END_TIME = 1608681600000; // 2020-12-23 00:00:00
|
const HOC_END_TIME = 1608681600000; // 2020-12-23 00:00:00
|
||||||
|
|
||||||
|
@ -178,7 +177,6 @@ class Splash extends React.Component {
|
||||||
this.props.sessionStatus === sessionActions.Status.FETCHED && // done fetching session
|
this.props.sessionStatus === sessionActions.Status.FETCHED && // done fetching session
|
||||||
Object.keys(this.props.user).length === 0 && // no user session found
|
Object.keys(this.props.user).length === 0 && // no user session found
|
||||||
Date.now() >= SCRATCH_WEEK_START_TIME &&
|
Date.now() >= SCRATCH_WEEK_START_TIME &&
|
||||||
Date.now() < SCRATCH_WEEK_END_TIME &&
|
|
||||||
this.shouldShowHOCTopBanner() !== true
|
this.shouldShowHOCTopBanner() !== true
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue