# Pastebin 0ju8FYXZ Error ┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈ root/components/GroupedTrackRelationships.js:115:60 Cannot get irrelevantLinkTypes[targetType] because property url is missing in object literal [1]. [prop-missing] [1] 90│ const irrelevantLinkTypes = { 91│ recording: new Map([ 92│ [226, false], // karaoke versions of this 93│ [227, true], // DJ-mixes of this 94│ [228, true], // recordings compiling this one 95│ [230, true], // remixes of this 96│ [231, true], // recordings sampling this one 97│ [232, true], // mash-ups of this 98│ [309, true], // edits of this 99│ ]), 100│ work: new Map([ 101│ [239, true], // medleys including this 102│ [241, false], // generic later versions 103│ [281, false], // parts 104│ [314, false], // works based on this 105│ [315, false], // revisions 106│ [316, false], // orchestrations 107│ [350, false], // arrangements 108│ ]), 109│ }; 110│ 111│ export function isIrrelevantLinkType( 112│ relationship: RelationshipT, 113│ targetType: CoreEntityTypeT, 114│ ): boolean { 115│ const irrelevantTypesForTargetType = irrelevantLinkTypes[targetType]; 116│ if (irrelevantTypesForTargetType == null) { 117│ return irrelevantTypesForTargetType.get(relationship.linkTypeID) === 118│ relationship.backward;