We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 896f866 commit 0899574Copy full SHA for 0899574
dotcom-rendering/src/components/ArticleBody.tsx
@@ -144,8 +144,6 @@ export const ArticleBody = ({
144
const hasObserverPublicationTag = tags.find(
145
(tag) => tag.type === 'Publication' && tag.title === 'The Observer',
146
);
147
- const { removeObserver = false } = switches;
148
-
149
const ObserverFooter = () => {
150
return (
151
<ul css={textBlockStyles(format)}>
@@ -252,7 +250,7 @@ export const ArticleBody = ({
252
250
contributionsServiceUrl={contributionsServiceUrl}
253
251
/>
254
</div>
255
- {hasObserverPublicationTag && removeObserver && <ObserverFooter />}
+ {hasObserverPublicationTag && <ObserverFooter />}
256
</>
257
258
};
0 commit comments