chore: move LeftSidePanel to legacy

This commit is contained in:
amhsirak
2025-11-25 15:57:42 +05:30
parent 6f60e67a54
commit b6f4ca7a3a

View File

@@ -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(