File tree Expand file tree Collapse file tree 3 files changed +2
-7
lines changed
Expand file tree Collapse file tree 3 files changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ export const LiveBlogBlocksAndAdverts = ({
7575 ) ;
7676 } ;
7777
78- if ( isAdFreeUser || isSensitive || shouldHideAds ) {
78+ if ( isAdFreeUser || shouldHideAds ) {
7979 return (
8080 < >
8181 { blocks . map ( ( block ) => (
Original file line number Diff line number Diff line change @@ -19,10 +19,5 @@ export const canRenderAds = (
1919 return false ;
2020 }
2121
22- // DCRFrontType doesn't have a isSensitive property
23- if ( 'isSensitive' in pageData && pageData . isSensitive ) {
24- return false ;
25- }
26-
2722 return true ;
2823} ;
Original file line number Diff line number Diff line change @@ -160,7 +160,7 @@ export const renderElement = ({
160160 format . design === ArticleDesign . LiveBlog ||
161161 format . design === ArticleDesign . DeadBlog ;
162162
163- const renderAds = ! isAdFreeUser && ! isSensitive && ! shouldHideAds ;
163+ const renderAds = ! isAdFreeUser && ! shouldHideAds ;
164164
165165 switch ( element . _type ) {
166166 case 'model.dotcomrendering.pageElements.AudioAtomBlockElement' :
You can’t perform that action at this time.
0 commit comments