We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23f3215 commit b7e47f4Copy full SHA for b7e47f4
static/app/views/dashboards/widgets/textWidget/textWidgetVisualization.tsx
@@ -1,4 +1,4 @@
1
-import {Fragment, type ReactNode} from 'react';
+import {type ReactNode} from 'react';
2
import styled from '@emotion/styled';
3
4
import {Container, Flex} from '@sentry/scraps/layout';
@@ -24,11 +24,9 @@ export function TextWidgetVisualization({text}: TextWidgetProps) {
24
}
25
26
return (
27
- <Fragment>
28
- <TextContainer>
29
- <MarkedText text={text} />
30
- </TextContainer>
31
- </Fragment>
+ <TextContainer>
+ <MarkedText text={text} />
+ </TextContainer>
32
);
33
34
0 commit comments