diff --git a/app/javascript/gabsocial/layouts/explore_layout.js b/app/javascript/gabsocial/layouts/explore_layout.js
index 6e98aeac..b492f004 100644
--- a/app/javascript/gabsocial/layouts/explore_layout.js
+++ b/app/javascript/gabsocial/layouts/explore_layout.js
@@ -4,6 +4,7 @@ import ImmutablePropTypes from 'react-immutable-proptypes'
import ImmutablePureComponent from 'react-immutable-pure-component'
import throttle from 'lodash.throttle'
import Sticky from 'react-stickynode'
+import { me } from '../initial_state'
import { BREAKPOINT_EXTRA_SMALL } from '../constants'
import Layout from './layout'
import SidebarPanelGroup from '../components/sidebar_panel_group'
@@ -13,6 +14,7 @@ import Heading from '../components/heading'
import {
GroupsPanel,
SignUpLogInPanel,
+ VerifiedAccountsPanel,
TrendsPanel,
} from '../features/ui/util/async_components'
@@ -60,6 +62,15 @@ class ExploreLayout extends ImmutablePureComponent {
)
+ const layout = [
+ SignUpLogInPanel,
+ ,
+ ]
+ if (!!me) {
+ layout.push(VerifiedAccountsPanel)
+ }
+ layout.push()
+
return (
,
- ,
- ]}
+ layout={layout}
/>