fix(signup): add role_key to registration requests
Some checks failed
build-and-release / build (push) Failing after 1m12s
Some checks failed
build-and-release / build (push) Failing after 1m12s
This commit is contained in:
parent
d7810ace96
commit
3ee5e908cf
3 changed files with 3 additions and 0 deletions
|
|
@ -168,6 +168,7 @@ export default function CompanySignupRoute() {
|
|||
phone: "",
|
||||
intent: "company",
|
||||
company_name: companyName().trim(),
|
||||
role_key: "COMPANY",
|
||||
}),
|
||||
});
|
||||
|
||||
|
|
|
|||
|
|
@ -165,6 +165,7 @@ export default function CustomerSignupRoute() {
|
|||
password: password(),
|
||||
phone: "",
|
||||
intent: "customer",
|
||||
role_key: "CUSTOMER",
|
||||
}),
|
||||
});
|
||||
|
||||
|
|
|
|||
|
|
@ -155,6 +155,7 @@ export default function JobSeekerSignupRoute() {
|
|||
password: password(),
|
||||
phone: "",
|
||||
intent: "job_seeker",
|
||||
role_key: "JOB_SEEKER",
|
||||
}),
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue