Skip to content

Commit 231786b

Browse files
committed
fix(ashby): fix websiteUrl field name in candidate.update request
1 parent db6856c commit 231786b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/sim/tools/ashby/update_candidate.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ export const updateCandidateTool: ToolConfig<
9595
if (params.phoneNumber) body.phoneNumber = params.phoneNumber
9696
if (params.linkedInUrl) body.linkedInUrl = params.linkedInUrl
9797
if (params.githubUrl) body.githubUrl = params.githubUrl
98-
if (params.websiteUrl) body.website = params.websiteUrl
98+
if (params.websiteUrl) body.websiteUrl = params.websiteUrl
9999
if (params.sourceId) body.sourceId = params.sourceId
100100
return body
101101
},

0 commit comments

Comments
 (0)