diff --git a/app/javascript/flavours/glitch/components/status_prepend.jsx b/app/javascript/flavours/glitch/components/status_prepend.jsx index 7ed5416d38..60dd0a4ce7 100644 --- a/app/javascript/flavours/glitch/components/status_prepend.jsx +++ b/app/javascript/flavours/glitch/components/status_prepend.jsx @@ -45,10 +45,6 @@ export default class StatusPrepend extends PureComponent { ); switch (type) { - case 'featured': - return ( - - ); case 'reblogged_by': return ( { let account = undefined; let prepend = undefined; - if (props.featured && status) { - account = status.get('account'); - prepend = 'featured'; - } else if (reblogStatus !== null && typeof reblogStatus === 'object') { + if (reblogStatus !== null && typeof reblogStatus === 'object') { account = status.get('account'); status = reblogStatus; prepend = 'reblogged_by';