diff --git a/packages/frontend/core/src/mobile/components/doc-card/index.tsx b/packages/frontend/core/src/mobile/components/doc-card/index.tsx index c4dcec17f2..333f6a0cc7 100644 --- a/packages/frontend/core/src/mobile/components/doc-card/index.tsx +++ b/packages/frontend/core/src/mobile/components/doc-card/index.tsx @@ -102,30 +102,35 @@ export const DocCard = forwardRef( data-visible={visible} {...attrs} > -
-

{title}

- - } - /> -
-
- {visible && ( - - - - - } - pageId={meta.id} - emptyFallback={
Empty
} - /> - )} -
- {showTags ? : null} + {visible && ( + <> +
+

{title}

+ + } + /> +
+
+ + + + + } + pageId={meta.id} + emptyFallback={
Empty
} + /> +
+ {showTags ? : null} + + )} ); }