Skip to content

Commit

Permalink
Comment out tags in footer
Browse files Browse the repository at this point in the history
Since we want to have tags at the top of the page we should hide them from the footer.
  • Loading branch information
josh-wong committed Feb 5, 2025
1 parent 5c462d4 commit 9379096
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/theme/DocItem/Footer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ export default function DocItemFooter(): JSX.Element | null {
return (
<footer
className={clsx(ThemeClassNames.docs.docFooter, 'docusaurus-mt-lg')}>
{canDisplayTagsRow && (
{/* Commented out tags since we've added them to the top of docs. (See src/theme/DocVersionBadge/index.tsx) */}
{/* {canDisplayTagsRow && (
<div
className={clsx(
'row margin-top--sm',
Expand All @@ -39,7 +40,7 @@ export default function DocItemFooter(): JSX.Element | null {
<TagsListInline tags={tags} />
</div>
</div>
)}
)} */}
{canDisplayEditMetaRow && (
<EditMetaRow
className={clsx(
Expand Down

0 comments on commit 9379096

Please sign in to comment.