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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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);
},