Refactor import statements and update component types in SpanViewer.tsx

This commit is contained in:
Simon Larsen 2024-04-22 11:07:23 +01:00
parent 8363279050
commit cc517d36dc
No known key found for this signature in database
GPG Key ID: AB45983AA9C81CDE

View File

@ -38,9 +38,7 @@ const SpanViewer: FunctionComponent<ComponentProps> = (
const [isLoading, setIsLoading] = React.useState<boolean>(false);
const [span, setSpan] = React.useState<Span | null>(null);
const {
telemetryService, onClose
} = props;
const { telemetryService, onClose } = props;
const selectLog: Select<Log> = {
body: true,