diff --git a/lib/api/src/modules/refs.ts b/lib/api/src/modules/refs.ts index 6357f8e3842..100b14bdd3e 100644 --- a/lib/api/src/modules/refs.ts +++ b/lib/api/src/modules/refs.ts @@ -1,5 +1,4 @@ import { location, fetch } from 'global'; -import { logger } from '@storybook/client-logger'; import dedent from 'ts-dedent'; import { transformStoriesRawToStoriesHash, diff --git a/lib/ui/src/components/sidebar/RefIndicator.tsx b/lib/ui/src/components/sidebar/RefIndicator.tsx index 4ab1ca1253c..0f36d5b74f6 100644 --- a/lib/ui/src/components/sidebar/RefIndicator.tsx +++ b/lib/ui/src/components/sidebar/RefIndicator.tsx @@ -1,11 +1,4 @@ -import React, { - FunctionComponent, - useMemo, - Fragment, - ComponentProps, - useCallback, - forwardRef, -} from 'react'; +import React, { FunctionComponent, useMemo, ComponentProps, useCallback, forwardRef } from 'react'; import { Icons, WithTooltip, Spaced, TooltipLinkList } from '@storybook/components'; import { styled } from '@storybook/theming'; @@ -35,13 +28,6 @@ const IndicatorPlacement = styled.aside( ({ theme }) => ({ color: theme.color.mediumdark }) ); -const Hr = styled.hr(({ theme }) => ({ - border: '0 none', - height: 0, - marginBottom: 0, - borderTop: `1px solid ${theme.color.mediumlight}`, -})); - const IndicatorIcon: FunctionComponent = ({ type }) => { let icon: ComponentProps['icon'];