Fixed interest inventory check in CareerCoach.

This commit is contained in:
Josh 2025-06-09 13:08:14 +00:00
parent a9fe5ce8bc
commit 87effa1a86

View File

@ -104,10 +104,13 @@ We can refine details anytime or just jump straight to what you're most interest
careerName
);
const interestInventoryMessage = userProfile?.riasec
? `With your Interest Inventory profile (${userProfile.riasec}), I can tailor suggestions more precisely.`
const hasInterestAnswers = Boolean(userProfile?.interest_inventory_answers?.trim());
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, Ill be able to offer more targeted suggestions based on your interests.`;
const riskMessage =
riskLevel && riskReasoning
? `Note: This role has a <strong>${riskLevel}</strong> automation risk over the next 10 years. ${riskReasoning}`