feat: proxy case
This commit is contained in:
@@ -3,6 +3,7 @@ import { MainMenu } from "../components/organisms/MainMenu";
|
|||||||
import { Grid, Stack } from "@mui/material";
|
import { Grid, Stack } from "@mui/material";
|
||||||
import { Recordings } from "../components/organisms/Recordings";
|
import { Recordings } from "../components/organisms/Recordings";
|
||||||
import { Runs } from "../components/organisms/Runs";
|
import { Runs } from "../components/organisms/Runs";
|
||||||
|
import ProxyForm from '../components/organisms/ProxyForm';
|
||||||
import { useGlobalInfoStore } from "../context/globalInfo";
|
import { useGlobalInfoStore } from "../context/globalInfo";
|
||||||
import { createRunForStoredRecording, interpretStoredRecording, notifyAboutAbort, scheduleStoredRecording } from "../api/storage";
|
import { createRunForStoredRecording, interpretStoredRecording, notifyAboutAbort, scheduleStoredRecording } from "../api/storage";
|
||||||
import { handleUploadCredentials } from "../api/integration"
|
import { handleUploadCredentials } from "../api/integration"
|
||||||
@@ -142,6 +143,8 @@ export const MainPage = ({ handleEditRecording }: MainPageProps) => {
|
|||||||
runId={ids.runId}
|
runId={ids.runId}
|
||||||
runningRecordingName={runningRecordingName}
|
runningRecordingName={runningRecordingName}
|
||||||
/>;
|
/>;
|
||||||
|
case 'proxy':
|
||||||
|
return <ProxyForm />;
|
||||||
default:
|
default:
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user