Fixed interest inventory check in CareerCoach.
This commit is contained in:
parent
a9fe5ce8bc
commit
87effa1a86
@ -104,9 +104,12 @@ 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.`
|
||||
: `If you complete the Interest Inventory, I’ll be able to offer more targeted suggestions based on your interests.`;
|
||||
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, I’ll be able to offer more targeted suggestions based on your interests.`;
|
||||
|
||||
|
||||
const riskMessage =
|
||||
riskLevel && riskReasoning
|
||||
|
Loading…
Reference in New Issue
Block a user