diff --git a/src/services/marathon/parsing/parseRules.ts b/src/services/marathon/parsing/parseRules.ts index 833135e..9c115c9 100644 --- a/src/services/marathon/parsing/parseRules.ts +++ b/src/services/marathon/parsing/parseRules.ts @@ -285,10 +285,7 @@ export const makeRulesFromMarathonModule = ( isSubmodule: marathonModule.isSubmodule || false, hasPegs: marathonModule.hasPegs || false, isMat: marathonModule.isMat || false, - shouldHideBasedOnWidth: - marathonModule.shouldHideBasedOnWidth !== undefined && marathonModule.shouldHideBasedOnWidth !== null - ? marathonModule.shouldHideBasedOnWidth - : true, + shouldHideBasedOnWidth: marathonModule.shouldHideBasedOnWidth || false, alwaysDisplay: marathonModule.alwaysDisplay || false, isEdge: marathonModule.isEdge || false, isExtension: false, // False in this case, we'll manually set to true on the method regarding extensions