diff --git a/dist/bundle.es.js b/dist/bundle.es.js index 1c72cf9..5602bc7 100644 --- a/dist/bundle.es.js +++ b/dist/bundle.es.js @@ -2415,7 +2415,7 @@ const makeSelectResolvedRecommendedContentForUri = (uri, size, claimId, claimNam if (claim) { // always grab full URL - this can change once search returns canonical currentUri = buildURI({ streamClaimId: claim.claim_id, streamName: claim.name }); - const { title } = claim.value; + title = claim.value ? claim.value.title : null; } else { // for cases on mobile where the claim may not have been resolved () currentUri = buildURI({ streamClaimId: claimId, streamName: claimName }); diff --git a/src/redux/selectors/claims.js b/src/redux/selectors/claims.js index f84fce3..7b0c5dd 100644 --- a/src/redux/selectors/claims.js +++ b/src/redux/selectors/claims.js @@ -698,7 +698,7 @@ export const makeSelectResolvedRecommendedContentForUri = ( if (claim) { // always grab full URL - this can change once search returns canonical currentUri = buildURI({ streamClaimId: claim.claim_id, streamName: claim.name }); - const { title } = claim.value; + title = claim.value ? claim.value.title : null; } else { // for cases on mobile where the claim may not have been resolved () currentUri = buildURI({ streamClaimId: claimId, streamName: claimName });