Removed vestigial hasUnread

This commit is contained in:
kibigo!
2017-06-24 16:15:43 -07:00
parent 77908849bb
commit cdd7f792cb
4 changed files with 4 additions and 4 deletions

View File

@@ -22,7 +22,7 @@ export default class CommunityTimeline extends React.PureComponent {
}; };
render () { render () {
const { intl, hasUnread, columnId, multiColumn } = this.props; const { intl, columnId, multiColumn } = this.props;
return ( return (
<Timeline <Timeline

View File

@@ -30,7 +30,7 @@ export default class HashtagTimeline extends React.PureComponent {
} }
render () { render () {
const { hasUnread, columnId, multiColumn } = this.props; const { columnId, multiColumn } = this.props;
const { id } = this.props.params; const { id } = this.props.params;
return ( return (

View File

@@ -27,7 +27,7 @@ export default class HomeTimeline extends React.PureComponent {
}; };
render () { render () {
const { intl, hasUnread, hasFollows, columnId, multiColumn } = this.props; const { intl, hasFollows, columnId, multiColumn } = this.props;
let emptyMessage; let emptyMessage;

View File

@@ -22,7 +22,7 @@ export default class PublicTimeline extends React.PureComponent {
}; };
render () { render () {
const { intl, columnId, hasUnread, multiColumn } = this.props; const { intl, columnId, multiColumn } = this.props;
return ( return (
<Timeline <Timeline