Skip to content

Commit 2763809

Browse files
committed
fix: some more imports
1 parent 2aedc20 commit 2763809

5 files changed

Lines changed: 4 additions & 85 deletions

File tree

frontend/testing-view/src/features/workspace/components/rightSidebar/tabs/CategoryItem.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { useShallow } from "zustand/shallow";
44
import { useStore } from "../../../../../store/store";
55
import type { CatalogItem } from "../../../../../types/common/item";
66
import type { BoardName } from "../../../../../types/data/board";
7-
import type { SidebarTab } from "../../../../../types/workspace/sidebar";
7+
import type { SidebarTab } from "../../../types/sidebar";
88
import { CategoryHeader } from "./CategoryHeader";
99

1010
interface CategoryItemProps {

frontend/testing-view/src/features/workspace/components/rightSidebar/tabs/StandardList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { type ComponentType } from "react";
22
import type { CatalogItem } from "../../../../../types/common/item";
33
import type { BoardName } from "../../../../../types/data/board";
4-
import type { SidebarTab } from "../../../../../types/workspace/sidebar";
54
import { CategoryItem } from "./CategoryItem";
5+
import type { SidebarTab } from "../../../types/sidebar";
66

77
interface StandardListProps {
88
scope: SidebarTab;

frontend/testing-view/src/features/workspace/components/rightSidebar/tabs/Tab.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ import { type ComponentType } from "react";
22
import { useStore } from "../../../../../store/store";
33
import type { CatalogItem } from "../../../../../types/common/item";
44
import type { BoardName } from "../../../../../types/data/board";
5-
import type { SidebarTab } from "../../../../../types/workspace/sidebar";
65
import { EmptyTab } from "./EmptyTab";
76
import { StandardList } from "./StandardList";
87
import { TabHeader } from "./TabHeader";
98
import { VirtualizedList } from "./VirtualizedList";
9+
import type { SidebarTab } from "../../../types/sidebar";
1010

1111
interface TabProps {
1212
title: string;

frontend/testing-view/src/features/workspace/components/rightSidebar/tabs/TabHeader.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Button } from "@workspace/ui";
22
import { ListFilterPlus } from "@workspace/ui/icons";
33
import { useStore } from "../../../../../store/store";
4-
import type { SidebarTab } from "../../../../../types/workspace/sidebar";
4+
import type { SidebarTab } from "../../../types/sidebar";
55

66
interface TabHeaderProps {
77
title: string;

frontend/testing-view/src/mocks/messages.ts

Lines changed: 0 additions & 81 deletions
This file was deleted.

0 commit comments

Comments
 (0)