From b6f4ca7a3a119663713efb50ddc1898c12a0e127 Mon Sep 17 00:00:00 2001 From: amhsirak Date: Tue, 25 Nov 2025 15:57:42 +0530 Subject: [PATCH] chore: move LeftSidePanel to legacy --- .../recorder => legacy/src}/LeftSidePanel.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) rename {src/components/recorder => legacy/src}/LeftSidePanel.tsx (89%) diff --git a/src/components/recorder/LeftSidePanel.tsx b/legacy/src/LeftSidePanel.tsx similarity index 89% rename from src/components/recorder/LeftSidePanel.tsx rename to legacy/src/LeftSidePanel.tsx index 8fddbbb4..61daa339 100644 --- a/src/components/recorder/LeftSidePanel.tsx +++ b/legacy/src/LeftSidePanel.tsx @@ -1,14 +1,14 @@ import { Box, Paper, Tab, Tabs } from "@mui/material"; import React, { useCallback, useEffect, useState } from "react"; -import { getActiveWorkflow, getParamsOfActiveWorkflow } from "../../api/workflow"; -import { useSocketStore } from '../../context/socket'; +import { getActiveWorkflow, getParamsOfActiveWorkflow } from "../../src/api/workflow"; +import { useSocketStore } from '../../src/context/socket'; import { WhereWhatPair, WorkflowFile } from "maxun-core"; -import { emptyWorkflow } from "../../shared/constants"; -import { LeftSidePanelContent } from "./LeftSidePanelContent"; -import { useGlobalInfoStore } from "../../context/globalInfo"; +import { emptyWorkflow } from "../../src/shared/constants"; +import { LeftSidePanelContent } from "../../src/components/recorder/LeftSidePanelContent"; +import { useGlobalInfoStore } from "../../src/context/globalInfo"; import { TabContext, TabPanel } from "@mui/lab"; -import { LeftSidePanelSettings } from "./LeftSidePanelSettings"; -import { RunSettings } from "../run/RunSettings"; +import { LeftSidePanelSettings } from "../../src/components/recorder/LeftSidePanelSettings"; +import { RunSettings } from "../../src/components/run/RunSettings"; const fetchWorkflow = (id: string, callback: (response: WorkflowFile) => void) => { getActiveWorkflow(id).then(