From 142fdfe74328dfec3d8afc4beb88dbd5680d6354 Mon Sep 17 00:00:00 2001 From: Sabe Jones Date: Tue, 3 Nov 2020 15:19:54 -0600 Subject: [PATCH] fix(events): handle new spacer --- website/common/script/content/gear/sets/special/index.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/website/common/script/content/gear/sets/special/index.js b/website/common/script/content/gear/sets/special/index.js index 4387d9ae6c..4f127ad644 100644 --- a/website/common/script/content/gear/sets/special/index.js +++ b/website/common/script/content/gear/sets/special/index.js @@ -15,8 +15,7 @@ import t from '../../../translation'; const CURRENT_SEASON = moment().isBefore('2020-11-02') ? 'fall' : '_NONE_'; const gearEvents = cloneDeep(EVENTS); -gearEvents.fall2020.end = gearEvents.fall2020SecondPromo.end; -['winter', 'birthday', 'gaymerx', 'fall2020Interim', 'fall2020SecondPromo'].forEach(nonGearEvent => { +['winter', 'birthday', 'gaymerx', 'noCurrentEvent'].forEach(nonGearEvent => { delete gearEvents[nonGearEvent]; });