feat: apikey case
This commit is contained in:
@@ -4,6 +4,7 @@ import { 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 ProxyForm from '../components/organisms/ProxyForm';
|
||||||
|
import ApiKey from '../components/organisms/ApiKey';
|
||||||
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"
|
||||||
@@ -145,6 +146,8 @@ export const MainPage = ({ handleEditRecording }: MainPageProps) => {
|
|||||||
/>;
|
/>;
|
||||||
case 'proxy':
|
case 'proxy':
|
||||||
return <ProxyForm />;
|
return <ProxyForm />;
|
||||||
|
case 'apikey':
|
||||||
|
return <ApiKey />;
|
||||||
default:
|
default:
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user