From 1c2adeb182bce8076a09aacf71c9a0eb76444c5c Mon Sep 17 00:00:00 2001 From: tomlum Date: Fri, 5 May 2023 12:58:14 -0400 Subject: [PATCH] unhides community rows --- src/views/splash/presentation.jsx | 43 +++++++++++++++---------------- 1 file changed, 21 insertions(+), 22 deletions(-) diff --git a/src/views/splash/presentation.jsx b/src/views/splash/presentation.jsx index 39d61af9f..8cb087947 100644 --- a/src/views/splash/presentation.jsx +++ b/src/views/splash/presentation.jsx @@ -8,7 +8,7 @@ const React = require('react'); const frameless = require('../../lib/frameless'); const intlShape = require('../../lib/intl-shape'); const sessionActions = require('../../redux/session.js'); -// const shuffle = require('../../lib/shuffle.js').shuffle; required for community rows +const shuffle = require('../../lib/shuffle.js').shuffle; const AdminPanel = require('../../components/adminpanel/adminpanel.jsx'); const Box = require('../../components/box/box.jsx'); @@ -302,27 +302,26 @@ class SplashPresentation extends React.Component { // eslint-disable-line react/ ); } - // Temporarily hide community rows - // rows.push( - // - // - // , - // - // - // - // ); + rows.push( + + + , + + + + ); return rows; }