Skip to content

Commit 6683821

Browse files
committed
🔥(frontend) do not display feature version
We want to improve the version feature before releasing it. We will not display it for now.
1 parent 9c67c9e commit 6683821

File tree

3 files changed

+1
-116
lines changed

3 files changed

+1
-116
lines changed

CHANGELOG.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ and this project adheres to
1111
## Added
1212

1313
- 🎨(frontend) better conversion editor to pdf #151
14-
- ✨(frontend) Versioning #147
1514
- ✨Export docx (word) #161
1615
- 🌐Internationalize invitation email #167
1716
- ✨(frontend) White branding #164

src/frontend/apps/e2e/__tests__/app-impress/doc-version.spec.ts

Lines changed: 0 additions & 109 deletions
This file was deleted.

src/frontend/apps/impress/src/features/docs/doc-editor/components/DocEditor.tsx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,7 @@ import { Box, Card, Text, TextErrors } from '@/components';
88
import { useCunninghamTheme } from '@/cunningham';
99
import { DocHeader } from '@/features/docs/doc-header';
1010
import { Doc } from '@/features/docs/doc-management';
11-
import {
12-
Panel,
13-
Versions,
14-
useDocVersion,
15-
} from '@/features/docs/doc-versioning/';
11+
import { Versions, useDocVersion } from '@/features/docs/doc-versioning/';
1612

1713
import { BlockNoteEditor } from './BlockNoteEditor';
1814

@@ -62,7 +58,6 @@ export const DocEditor = ({ doc }: DocEditorProps) => {
6258
<BlockNoteEditor doc={doc} />
6359
)}
6460
</Card>
65-
{doc.abilities.versions_list && <Panel doc={doc} />}
6661
</Box>
6762
</>
6863
);

0 commit comments

Comments
 (0)