diff --git a/frontend/src/misc-components/tag.tsx b/frontend/src/misc-components/tag.tsx index 5d3d606..452dff9 100644 --- a/frontend/src/misc-components/tag.tsx +++ b/frontend/src/misc-components/tag.tsx @@ -10,8 +10,11 @@ export type Props = { export const Tag = (props: Props): JSX.Element => { const inlineStyle = getStyleObjectFromString(props.style || ''); return ( - - {props.tag} - + <> + + + {props.tag} + + ); } \ No newline at end of file