Fixed interest inventory check in CareerCoach.
This commit is contained in:
parent
a9fe5ce8bc
commit
87effa1a86
@ -104,10 +104,13 @@ We can refine details anytime or just jump straight to what you're most interest
|
|||||||
careerName
|
careerName
|
||||||
);
|
);
|
||||||
|
|
||||||
const interestInventoryMessage = userProfile?.riasec
|
const hasInterestAnswers = Boolean(userProfile?.interest_inventory_answers?.trim());
|
||||||
? `With your Interest Inventory profile (${userProfile.riasec}), I can tailor suggestions more precisely.`
|
|
||||||
|
const interestInventoryMessage = hasInterestAnswers
|
||||||
|
? `Since you've completed the Interest Inventory, I can offer more targeted suggestions based on your responses.`
|
||||||
: `If you complete the Interest Inventory, I’ll be able to offer more targeted suggestions based on your interests.`;
|
: `If you complete the Interest Inventory, I’ll be able to offer more targeted suggestions based on your interests.`;
|
||||||
|
|
||||||
|
|
||||||
const riskMessage =
|
const riskMessage =
|
||||||
riskLevel && riskReasoning
|
riskLevel && riskReasoning
|
||||||
? `Note: This role has a <strong>${riskLevel}</strong> automation risk over the next 10 years. ${riskReasoning}`
|
? `Note: This role has a <strong>${riskLevel}</strong> automation risk over the next 10 years. ${riskReasoning}`
|
||||||
|
Loading…
Reference in New Issue
Block a user