Use residential proxy for workflow UI runs by default (#669)

This commit is contained in:
Kerem Yilmaz
2024-08-02 10:36:43 -07:00
committed by GitHub
parent 5791410cd9
commit 7fd07ece2f

View File

@@ -36,6 +36,7 @@ function RunWorkflowForm({ workflowParameters, initialValues }: Props) {
return client
.post(`/workflows/${workflowPermanentId}/run`, {
data: values,
proxy_location: "RESIDENTIAL",
})
.then((response) => response.data);
},