diff --git a/app/javascript/gabsocial/selectors/index.js b/app/javascript/gabsocial/selectors/index.js index 8df93180..f33e21d4 100644 --- a/app/javascript/gabsocial/selectors/index.js +++ b/app/javascript/gabsocial/selectors/index.js @@ -44,7 +44,7 @@ export const getPromotions = () => { (state) => state.getIn(['accounts', me, 'is_pro']), (state) => state.get('promotions'), ], (state, isPro, promotions) => { - return !isPro ? promotions : ImmutableList() + return !isPro ? promotions : [] }) }