fix: pass userId

This commit is contained in:
karishmas6
2024-10-10 03:26:41 +05:30
parent 321ae008d4
commit fbc67af7bc

View File

@@ -172,7 +172,7 @@ function resetRecordingState(browserId: string, id: string) {
export async function handleRunRecording(id: string, userId: string) {
try {
const result = await runWorkflow(id);
const result = await runWorkflow(id, userId);
const { browserId, runId: newRunId } = result;
if (!browserId || !newRunId || !userId) {