Merge branch 'release' into develop

This commit is contained in:
Sabe Jones
2020-12-17 08:25:26 -06:00
3 changed files with 4 additions and 5 deletions
@@ -6,9 +6,8 @@ import {
SEASONAL_SETS,
} from '../content/constants';
const CURRENT_EVENT = find(EVENTS, event => {
moment().isBetween(event.start, event.end);
});
const CURRENT_EVENT = find(EVENTS, event => moment().isBetween(event.start, event.end));
const SHOP_OPEN = CURRENT_EVENT && ['winter', 'spring', 'summer', 'fall'].includes(CURRENT_EVENT.season);
export default {