From 4cc420632c1afba7578b945c774d442257f51a40 Mon Sep 17 00:00:00 2001 From: tomlum Date: Fri, 17 Mar 2023 13:17:19 -0400 Subject: [PATCH 1/2] hides community rows from homepage --- src/views/splash/presentation.jsx | 41 ++++++++++++++++--------------- 1 file changed, 21 insertions(+), 20 deletions(-) diff --git a/src/views/splash/presentation.jsx b/src/views/splash/presentation.jsx index 8cb087947..60a5afd9e 100644 --- a/src/views/splash/presentation.jsx +++ b/src/views/splash/presentation.jsx @@ -302,26 +302,27 @@ class SplashPresentation extends React.Component { // eslint-disable-line react/ ); } - rows.push( - - - , - - - - ); + // Temporarily hide community rows + // rows.push( + // + // + // , + // + // + // + // ); return rows; } From 3ac6f0e5bf50bd5ca0a0fd16d62342f80d13f51f Mon Sep 17 00:00:00 2001 From: tomlum Date: Fri, 17 Mar 2023 13:27:49 -0400 Subject: [PATCH 2/2] removes shuffle library from presentation --- src/views/splash/presentation.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/splash/presentation.jsx b/src/views/splash/presentation.jsx index 60a5afd9e..39d61af9f 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; +// const shuffle = require('../../lib/shuffle.js').shuffle; required for community rows const AdminPanel = require('../../components/adminpanel/adminpanel.jsx'); const Box = require('../../components/box/box.jsx');