Skip to content

Commit

Permalink
fix type imports
Browse files Browse the repository at this point in the history
  • Loading branch information
JReinhold committed Oct 31, 2024
1 parent 173fb39 commit 3623ba1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/TestingModuleDescription.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Link } from "@storybook/components";
import { FailedIcon } from "@storybook/icons";
import { type API, useChannel, useStorybookState } from "@storybook/manager-api";
import { color } from "@storybook/theming";
import { Addon_TestProviderState } from "@storybook/types";
import type { Addon_TestProviderState } from "@storybook/types";
import pluralize from "pluralize";
import React, { useCallback, useContext, useEffect, useRef } from "react";

Expand Down
2 changes: 1 addition & 1 deletion src/manager.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { FailedIcon } from "@storybook/icons";
import { addons, type API } from "@storybook/manager-api";
import { color } from "@storybook/theming";
import { Addon_TestProviderType, Addon_TypesEnum } from "@storybook/types";
import { type Addon_TestProviderType, Addon_TypesEnum } from "@storybook/types";
import React from "react";

import { SidebarBottom } from "./components/SidebarBottom";
Expand Down

0 comments on commit 3623ba1

Please sign in to comment.