diff --git a/ghost/portal/src/utils/helpers.js b/ghost/portal/src/utils/helpers.js index be0753d9d3..cb525f2940 100644 --- a/ghost/portal/src/utils/helpers.js +++ b/ghost/portal/src/utils/helpers.js @@ -42,7 +42,7 @@ export function isComplimentaryMember({member = {}}) { const subscription = getMemberSubscription({member}); if (subscription) { const {price} = subscription; - return (price.amount === 0); + return (price && price.amount === 0); } return false; }