feat: apikey case

This commit is contained in:
karishmas6
2024-10-03 02:03:01 +05:30
parent b912ebfef9
commit e52d36c4f8

View File

@@ -4,6 +4,7 @@ import { Stack } from "@mui/material";
import { Recordings } from "../components/organisms/Recordings";
import { Runs } from "../components/organisms/Runs";
import ProxyForm from '../components/organisms/ProxyForm';
import ApiKey from '../components/organisms/ApiKey';
import { useGlobalInfoStore } from "../context/globalInfo";
import { createRunForStoredRecording, interpretStoredRecording, notifyAboutAbort, scheduleStoredRecording } from "../api/storage";
import { handleUploadCredentials } from "../api/integration"
@@ -145,6 +146,8 @@ export const MainPage = ({ handleEditRecording }: MainPageProps) => {
/>;
case 'proxy':
return <ProxyForm />;
case 'apikey':
return <ApiKey />;
default:
return null;
}