Skip to content

Commit

Permalink
fix: recommendation click event (#31)
Browse files Browse the repository at this point in the history
Co-authored-by: Maxwell Frank <mfrank@2u.com>
  • Loading branch information
MaxFrank13 and MaxFrank13 authored Aug 9, 2023
1 parent 41ee70d commit 1412589
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const RecommendationStack = ({ selectedRecommendations, productTypeNames }) => {
selected_recommendations: {
job_id: jobId,
job_name: jobName,
product_keys: extractProductKeys(recommendations, [...expandedList, productTypeName]),
product_keys: extractProductKeys(recommendations, expandedList),
},
},
);
Expand All @@ -47,7 +47,7 @@ const RecommendationStack = ({ selectedRecommendations, productTypeNames }) => {
selected_recommendations: {
job_id: jobId,
job_name: jobName,
product_keys: extractProductKeys(recommendations, [...expandedList, productTypeName]),
product_keys: extractProductKeys(recommendations, expandedList),
},
},
);
Expand Down

0 comments on commit 1412589

Please sign in to comment.