Skip to content

Commit b778b6e

Browse files
authored
Remove url checking in workflow run (#12743)
## Before <img width="1064" alt="image" src="https://github.com/user-attachments/assets/4f9081d7-1e2d-438b-b7ac-8537c1f3a676" /> ## After <img width="1062" alt="image" src="https://github.com/user-attachments/assets/2463f21c-f0e9-4c8c-b91e-55181bad8799" />
1 parent 2d6d5bf commit b778b6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/twenty-front/src/modules/workflow/validation-schemas/workflowSchema.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ export const workflowFormActionSettingsSchema =
113113
export const workflowHttpRequestActionSettingsSchema =
114114
baseWorkflowActionSettingsSchema.extend({
115115
input: z.object({
116-
url: z.string().url(),
116+
url: z.string(),
117117
method: z.enum(['GET', 'POST', 'PUT', 'PATCH', 'DELETE']),
118118
headers: z.record(z.string()).optional(),
119119
body: z

0 commit comments

Comments
 (0)