Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
ndelangen committed Jul 8, 2024
1 parent 62dae71 commit e006232
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/SidebarBottom.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { API_FilterFunction } from "storybook/internal/types";
import React, { useCallback, useEffect } from "react";
import { type API, type State, useStorybookState } from "storybook/internal/manager-api";
import { styled } from "storybook/internal/theming";
import type { API_FilterFunction } from "storybook/internal/types";

import { ADDON_ID, ENABLE_FILTER } from "../constants";
import { SidebarToggleButton } from "./SidebarToggleButton";
Expand Down
2 changes: 1 addition & 1 deletion src/screens/VisualTests/SnapshotComparison.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
import { action } from "@storybook/addon-actions";
import type { Meta, StoryObj } from "@storybook/react";
import { findByRole, fireEvent, screen, userEvent, within } from "@storybook/testing-library";
import type { StoryContext } from "storybook/internal/types";
import { delay, http } from "msw";
import React, { ComponentProps } from "react";
import type { StoryContext } from "storybook/internal/types";

import { Browser, ComparisonResult, TestResult, TestStatus } from "../../gql/graphql";
import { panelModes } from "../../modes";
Expand Down
2 changes: 1 addition & 1 deletion src/screens/VisualTests/VisualTests.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { FailedIcon } from "@storybook/icons";
import type { API_StatusState } from "storybook/internal/types";
import React, { useCallback, useEffect } from "react";
import { useStorybookApi, useStorybookState } from "storybook/internal/manager-api";
import { color } from "storybook/internal/theming";
import type { API_StatusState } from "storybook/internal/types";
import { useMutation } from "urql";

import { ADDON_ID, PANEL_ID } from "../../constants";
Expand Down
2 changes: 1 addition & 1 deletion src/utils/storyWrapper.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Decorator } from "@storybook/react";
import type { StoryContext } from "storybook/internal/types";
import React from "react";
import type { StoryContext } from "storybook/internal/types";

export const storyWrapper = (
Wrapper: React.FunctionComponent<any>,
Expand Down

0 comments on commit e006232

Please sign in to comment.