diff --git a/src/routes/signup/company.tsx b/src/routes/signup/company.tsx index e8ac9b9..e316a97 100644 --- a/src/routes/signup/company.tsx +++ b/src/routes/signup/company.tsx @@ -168,6 +168,7 @@ export default function CompanySignupRoute() { phone: "", intent: "company", company_name: companyName().trim(), + role_key: "COMPANY", }), }); diff --git a/src/routes/signup/customer.tsx b/src/routes/signup/customer.tsx index 608a060..fa9866a 100644 --- a/src/routes/signup/customer.tsx +++ b/src/routes/signup/customer.tsx @@ -165,6 +165,7 @@ export default function CustomerSignupRoute() { password: password(), phone: "", intent: "customer", + role_key: "CUSTOMER", }), }); diff --git a/src/routes/signup/jobseeker.tsx b/src/routes/signup/jobseeker.tsx index cc66643..bbe9814 100644 --- a/src/routes/signup/jobseeker.tsx +++ b/src/routes/signup/jobseeker.tsx @@ -155,6 +155,7 @@ export default function JobSeekerSignupRoute() { password: password(), phone: "", intent: "job_seeker", + role_key: "JOB_SEEKER", }), });