diff --git a/app/javascript/mastodon/features/firehose/index.jsx b/app/javascript/mastodon/features/firehose/index.jsx index 795286898a..9ba4fd5b2b 100644 --- a/app/javascript/mastodon/features/firehose/index.jsx +++ b/app/javascript/mastodon/features/firehose/index.jsx @@ -21,7 +21,6 @@ import StatusListContainer from '../ui/containers/status_list_container'; const messages = defineMessages({ title: { id: 'column.firehose', defaultMessage: 'Live feeds' }, - titleDefault: { id: 'column.community', defaultMessage: 'Local timeline' }, }); // TODO: use a proper React context later on @@ -55,7 +54,7 @@ const ColumnSettings = () => { ); }; -const Firehose = ({ feedType, defaultColumn, multiColumn }) => { +const Firehose = ({ feedType, multiColumn }) => { const dispatch = useAppDispatch(); const intl = useIntl(); const { signedIn } = useIdentity(); @@ -157,31 +156,12 @@ const Firehose = ({ feedType, defaultColumn, multiColumn }) => { /> ); - const headerIcon = defaultColumn ? 'users' : 'globe'; - const headerTitle = defaultColumn ? messages.titleDefault : messages.title; - - const sectionHeadline = defaultColumn || ( -