Skip to content

Commit 01d8355

Browse files
committed
Fix imports again
1 parent f9c9d6c commit 01d8355

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

  • x-pack/legacy/plugins/apm/public/components/app/ServiceMap

x-pack/legacy/plugins/apm/public/components/app/ServiceMap/index.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import { EuiBetaBadge } from '@elastic/eui';
88
import theme from '@elastic/eui/dist/eui_theme_light.json';
99
import { i18n } from '@kbn/i18n';
10-
import { default as React, default as React, useMemo } from 'react';
10+
import React, { useMemo } from 'react';
1111
import styled from 'styled-components';
1212
import { isValidPlatinumLicense } from '../../../../../../../plugins/apm/common/service_map';
1313
import { useDeepObjectIdentity } from '../../../hooks/useDeepObjectIdentity';
@@ -53,7 +53,6 @@ const BetaBadgeContainer = styled.div`
5353
top: ${theme.gutterTypes.gutterSmall};
5454
z-index: 1; /* The element containing the cytoscape canvas has z-index = 0. */
5555
`;
56-
const MAX_REQUESTS = 5;
5756

5857
export function ServiceMap({ serviceName }: ServiceMapProps) {
5958
const license = useLicense();

0 commit comments

Comments
 (0)