feat: pass params to abort run handler

This commit is contained in:
Rohit
2025-06-12 11:17:27 +05:30
parent 83280fbcf3
commit 9b9bc6dae7
3 changed files with 5 additions and 4 deletions

View File

@@ -4,7 +4,7 @@ import { RunsTable } from "./RunsTable";
interface RunsProps {
currentInterpretationLog: string;
abortRunHandler: () => void;
abortRunHandler: (runId: string, robotName: string, browserId: string) => void;
runId: string;
runningRecordingName: string;
}