Skip to content

Commit 8cc7db2

Browse files
committed
fix: fix imports
1 parent f819374 commit 8cc7db2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

frontend/testing-view/src/features/workspace/components/MainPanel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { cn } from "@workspace/ui/lib";
33
import { useStore } from "../../../store/store";
44
import type { DndActiveData } from "../../../types/app/dndData";
55
import { ChartsGrid } from "../../charts/components/ChartsGrid";
6-
import { EmptyWorkspace } from "../testing/EmptyWorkspace";
6+
import { EmptyWorkspace } from "./EmptyWorkspace";
77
import { TestingToolbar } from "./Toolbar";
88

99
interface MainPanelProps {

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import {
55
} from "@workspace/ui";
66
import { Activity } from "react";
77
import { useStore } from "../../../../store/store";
8-
import MessagesSection from "../../testing/RightSidebar/Sections/MessagesSection";
9-
import { NoneSelectedSection } from "../../testing/RightSidebar/Sections/NoneSelectedSection";
10-
import TabsSection from "../../testing/RightSidebar/Sections/TabsSection";
8+
import MessagesSection from "./sections/MessagesSection";
9+
import { NoneSelectedSection } from "./sections/NoneSelectedSection";
10+
import TabsSection from "./sections/TabsSection";
1111

1212
interface RightSidebarContentProps {}
1313

0 commit comments

Comments
 (0)