diff --git a/src/js/Content/Features/Store/App/FHowLongToBeat.ts b/src/js/Content/Features/Store/App/FHowLongToBeat.ts index 44414ccb0..655c84359 100644 --- a/src/js/Content/Features/Store/App/FHowLongToBeat.ts +++ b/src/js/Content/Features/Store/App/FHowLongToBeat.ts @@ -14,7 +14,11 @@ export default class FHowLongToBeat extends Feature { } const result = await this.context.data; - if (!result || !result.hltb) { + if ( + !result?.hltb + || [result.hltb.story, result.hltb.extras, result.hltb.complete] + .every(duration => duration === null) + ) { return false; }