diff --git a/app/javascript/gabsocial/components/panel/popular_links_panel.js b/app/javascript/gabsocial/components/panel/popular_links_panel.js index a700f98a..5c5b3f67 100644 --- a/app/javascript/gabsocial/components/panel/popular_links_panel.js +++ b/app/javascript/gabsocial/components/panel/popular_links_panel.js @@ -43,8 +43,7 @@ class PopularLinksPanel extends ImmutablePureComponent { const { fetched } = this.state const count = !!popularLinksItems ? popularLinksItems.count() : 0 - // : TESTING : - // if (count === 0 && fetched) return null + if (count === 0 && fetched) return null return (
- { /* + { popularLinksItems.map((id, i) => ( )) - */ } - - - + }
)