fix(signup): add role_key to registration requests
Some checks failed
build-and-release / build (push) Failing after 1m12s

This commit is contained in:
Ashwin Kumar Sivakumar 2026-07-05 16:51:30 +05:30
parent d7810ace96
commit 3ee5e908cf
3 changed files with 3 additions and 0 deletions

View file

@ -168,6 +168,7 @@ export default function CompanySignupRoute() {
phone: "",
intent: "company",
company_name: companyName().trim(),
role_key: "COMPANY",
}),
});

View file

@ -165,6 +165,7 @@ export default function CustomerSignupRoute() {
password: password(),
phone: "",
intent: "customer",
role_key: "CUSTOMER",
}),
});

View file

@ -155,6 +155,7 @@ export default function JobSeekerSignupRoute() {
password: password(),
phone: "",
intent: "job_seeker",
role_key: "JOB_SEEKER",
}),
});