🔥(frontend) do not display feature version

We want to improve the version feature before
releasing it. We will not display it for now.
This commit is contained in:
Anthony LC
2024-08-22 12:24:37 +02:00
committed by Anthony LC
parent 9c67c9e4d4
commit 6683821eaf
3 changed files with 1 additions and 116 deletions

View File

@@ -8,11 +8,7 @@ import { Box, Card, Text, TextErrors } from '@/components';
import { useCunninghamTheme } from '@/cunningham';
import { DocHeader } from '@/features/docs/doc-header';
import { Doc } from '@/features/docs/doc-management';
import {
Panel,
Versions,
useDocVersion,
} from '@/features/docs/doc-versioning/';
import { Versions, useDocVersion } from '@/features/docs/doc-versioning/';
import { BlockNoteEditor } from './BlockNoteEditor';
@@ -62,7 +58,6 @@ export const DocEditor = ({ doc }: DocEditorProps) => {
<BlockNoteEditor doc={doc} />
)}
</Card>
{doc.abilities.versions_list && <Panel doc={doc} />}
</Box>
</>
);