Skip to content

Commit 0899574

Browse files
committed
Abandon feature switch
1 parent 896f866 commit 0899574

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

dotcom-rendering/src/components/ArticleBody.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,6 @@ export const ArticleBody = ({
144144
const hasObserverPublicationTag = tags.find(
145145
(tag) => tag.type === 'Publication' && tag.title === 'The Observer',
146146
);
147-
const { removeObserver = false } = switches;
148-
149147
const ObserverFooter = () => {
150148
return (
151149
<ul css={textBlockStyles(format)}>
@@ -252,7 +250,7 @@ export const ArticleBody = ({
252250
contributionsServiceUrl={contributionsServiceUrl}
253251
/>
254252
</div>
255-
{hasObserverPublicationTag && removeObserver && <ObserverFooter />}
253+
{hasObserverPublicationTag && <ObserverFooter />}
256254
</>
257255
);
258256
};

0 commit comments

Comments
 (0)