Skip to content

Commit

Permalink
DIGG-475: Unless robots are explicitly set to false we want to track …
Browse files Browse the repository at this point in the history
…all pages
  • Loading branch information
Kopin1 committed Dec 13, 2024
1 parent b4f8410 commit c10af7c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/meta-data/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ export const MetaData: FC<{ seo?: SeoDataFragment | null }> = ({ seo }) => {

<meta
name="robots"
content={`${robotsFollow && allowSEO ? "follow" : "nofollow"}, ${
robotsIndex && allowSEO ? "index" : "noindex"
}`}
content={`${
robotsFollow === false || !allowSEO ? "nofollow" : "follow"
}, ${robotsIndex === false || !allowSEO ? "noindex" : "index"}`}
/>
<meta
name="og:site_name"
Expand Down

0 comments on commit c10af7c

Please sign in to comment.