diff --git a/website/common/script/content/constants/schedule.js b/website/common/script/content/constants/schedule.js index 37ce22e3ac..eed010bfc6 100644 --- a/website/common/script/content/constants/schedule.js +++ b/website/common/script/content/constants/schedule.js @@ -660,7 +660,6 @@ export const GALA_SCHEDULE = { }; export function assembleScheduledMatchers (date) { - console.log('Assembling new Schedule!'); const items = []; const month = date instanceof moment ? date.month() : date.getMonth(); const todayDay = date instanceof moment ? date.date() : date.getDate(); @@ -696,11 +695,8 @@ export function getScheduleMatchingGroup (type, date) { items: [], match (key) { if (this.items.length > 0 && !inListMatcher(this.items)(key)) { - console.log(this.items); - console.log(key, 'not in list'); return false; } - console.log(this.matchers.every(m => m(key))); return this.matchers.every(m => m(key)); }, }; diff --git a/website/common/script/ops/buy/purchase.js b/website/common/script/ops/buy/purchase.js index 7751f17e30..028755d035 100644 --- a/website/common/script/ops/buy/purchase.js +++ b/website/common/script/ops/buy/purchase.js @@ -108,7 +108,6 @@ export default async function purchase (user, req = {}, analytics) { } } else if (item.event && item.event.gear) { const matchers = getScheduleMatchingGroup('seasonalGear'); - console.log(matchers); if (!matchers.match(item.set)) { throw new NotAuthorized(i18n.t('messageNotAvailable', req.language)); }