diff --git a/src/frontend/apps/impress/src/features/docs/doc-header/components/DocTagPublic.tsx b/src/frontend/apps/impress/src/features/docs/doc-header/components/DocTagPublic.tsx deleted file mode 100644 index e2b81b37..00000000 --- a/src/frontend/apps/impress/src/features/docs/doc-header/components/DocTagPublic.tsx +++ /dev/null @@ -1,35 +0,0 @@ -import { useTranslation } from 'react-i18next'; - -import { Text } from '@/components'; -import { useCunninghamTheme } from '@/cunningham'; -import { Doc, LinkReach } from '@/docs/doc-management'; -import { useResponsiveStore } from '@/stores'; - -interface DocTagPublicProps { - doc: Doc; -} - -export const DocTagPublic = ({ doc }: DocTagPublicProps) => { - const { colorsTokens } = useCunninghamTheme(); - const { t } = useTranslation(); - const { isSmallMobile } = useResponsiveStore(); - - if (doc?.link_reach !== LinkReach.PUBLIC) { - return null; - } - - return ( - - {t('Public')} - - ); -};