Skip to content

Commit b7e47f4

Browse files
committed
cursor fix
1 parent 23f3215 commit b7e47f4

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

static/app/views/dashboards/widgets/textWidget/textWidgetVisualization.tsx

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {Fragment, type ReactNode} from 'react';
1+
import {type ReactNode} from 'react';
22
import styled from '@emotion/styled';
33

44
import {Container, Flex} from '@sentry/scraps/layout';
@@ -24,11 +24,9 @@ export function TextWidgetVisualization({text}: TextWidgetProps) {
2424
}
2525

2626
return (
27-
<Fragment>
28-
<TextContainer>
29-
<MarkedText text={text} />
30-
</TextContainer>
31-
</Fragment>
27+
<TextContainer>
28+
<MarkedText text={text} />
29+
</TextContainer>
3230
);
3331
}
3432

0 commit comments

Comments
 (0)