Revert "feat: add auto robots template"

This commit is contained in:
Karishma Shukla
2026-01-23 17:47:00 +05:30
committed by GitHub
parent 4e1a3fdc5d
commit 7faa824631
5 changed files with 0 additions and 1374 deletions

View File

@@ -6,7 +6,6 @@ import { Recordings } from "../components/robot/Recordings";
import { Runs } from "../components/run/Runs";
import ProxyForm from '../components/proxy/ProxyForm';
import ApiKey from '../components/api/ApiKey';
import { AutoRobots } from '../components/robot/AutoRobots';
import { useGlobalInfoStore, useCacheInvalidation } from "../context/globalInfo";
import { createAndRunRecording, createRunForStoredRecording, CreateRunResponseWithQueue, interpretStoredRecording, notifyAboutAbort, scheduleStoredRecording } from "../api/storage";
import { io, Socket } from "socket.io-client";
@@ -318,8 +317,6 @@ export const MainPage = ({ handleEditRecording, initialContent }: MainPageProps)
return <ProxyForm />;
case 'apikey':
return <ApiKey />;
case 'prebuilt-robots':
return <AutoRobots />;
default:
return null;
}