diff --git a/src/views/splash/presentation.jsx b/src/views/splash/presentation.jsx
index 8cb087947..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');
@@ -302,26 +302,27 @@ class SplashPresentation extends React.Component { // eslint-disable-line react/
);
}
- rows.push(
-
-
- ,
-
-
-
- );
+ // Temporarily hide community rows
+ // rows.push(
+ //
+ //
+ // ,
+ //
+ //
+ //
+ // );
return rows;
}