summaryrefslogtreecommitdiffstats
path: root/webapp/components/post_focus_view.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/post_focus_view.jsx')
-rw-r--r--webapp/components/post_focus_view.jsx16
1 files changed, 0 insertions, 16 deletions
diff --git a/webapp/components/post_focus_view.jsx b/webapp/components/post_focus_view.jsx
index d2fbb4532..0655a9916 100644
--- a/webapp/components/post_focus_view.jsx
+++ b/webapp/components/post_focus_view.jsx
@@ -7,8 +7,6 @@ import PostStore from 'stores/post_store.jsx';
import ChannelStore from 'stores/channel_store.jsx';
import * as GlobalActions from 'action_creators/global_actions.jsx';
-import {FormattedMessage} from 'react-intl';
-
import React from 'react';
export default class PostFocusView extends React.Component {
@@ -79,19 +77,6 @@ export default class PostFocusView extends React.Component {
GlobalActions.emitLoadMorePostsFocusedBottomEvent();
}
- getIntroMessage() {
- return (
- <div className='channel-intro'>
- <h4 className='channel-intro__title'>
- <FormattedMessage
- id='post_focus_view.beginning'
- defaultMessage='Beginning of Channel Archives'
- />
- </h4>
- </div>
- );
- }
-
render() {
const postsToHighlight = {};
postsToHighlight[this.state.scrollPostId] = true;
@@ -113,7 +98,6 @@ export default class PostFocusView extends React.Component {
loadMorePostsBottomClicked={this.loadMorePostsBottom}
showMoreMessagesTop={!this.state.atTop}
showMoreMessagesBottom={!this.state.atBottom}
- introText={this.getIntroMessage()}
messageSeparatorTime={0}
postsToHighlight={postsToHighlight}
/>