diff --git a/UI/BigComponents/AttributionPanel.ts b/UI/BigComponents/AttributionPanel.ts index 2ab3fe2f32..760ec9b85d 100644 --- a/UI/BigComponents/AttributionPanel.ts +++ b/UI/BigComponents/AttributionPanel.ts @@ -72,7 +72,8 @@ export default class AttributionPanel extends Combine { const total = contributors.contributors.length; let filtered = contributors.contributors - .splice(10, total - 10); + + filtered.splice(10, total - 10); let contribsStr = filtered.map(c => c.contributor) .join(", ")