File tree 1 file changed +4
-2
lines changed 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -521,7 +521,9 @@ const PostViewer: React.FC<PostViewerProps> = ({
521
521
/>
522
522
}
523
523
/>
524
- { shouldShowBanner ? < PostBanner customAd = { customAd } /> : null }
524
+ { shouldShowBanner ? (
525
+ < PostBanner customAd = { customAd } isDisplayAd = { true } />
526
+ ) : null }
525
527
< PostContent isMarkdown = { post . is_markdown } body = { post . body } />
526
528
< UserProfileWrapper >
527
529
< UserProfile
@@ -541,7 +543,7 @@ const PostViewer: React.FC<PostViewerProps> = ({
541
543
</ UserProfileWrapper >
542
544
< LinkedPostList linkedPosts = { post . linked_posts } />
543
545
{ shouldShowBanner && isContentLongEnough ? (
544
- < PostBanner customAd = { customAd } />
546
+ < PostBanner customAd = { customAd } isDisplayAd = { true } />
545
547
) : null }
546
548
{ shouldShowFooterBanner ? (
547
549
< PostBanner isDisplayAd = { true } customAd = { customAd } />
You can’t perform that action at this time.
0 commit comments