diff --git a/front_end/src/components/comment_feed/comment.tsx b/front_end/src/components/comment_feed/comment.tsx index 57ceaf8f1..8bf54d49e 100644 --- a/front_end/src/components/comment_feed/comment.tsx +++ b/front_end/src/components/comment_feed/comment.tsx @@ -285,7 +285,6 @@ const Comment: FC = ({ const canIncludeForecastInReply = useMemo(() => { if (!postData?.question) return false; - if (postData.question.type === QuestionType.MultipleChoice) return false; const latest = postData.question.my_forecasts?.latest; return !!latest && isForecastActive(latest); }, [postData]); diff --git a/front_end/src/components/comment_feed/index.tsx b/front_end/src/components/comment_feed/index.tsx index bec49cf4c..c9e137efd 100644 --- a/front_end/src/components/comment_feed/index.tsx +++ b/front_end/src/components/comment_feed/index.tsx @@ -79,11 +79,8 @@ function shouldIncludeForecast(postData: PostWithForecasts | undefined) { return false; } - // we can link forecast only for date, binary and numeric questions + // we can link forecast for all question types if (postData.question) { - if (postData.question.type === QuestionType.MultipleChoice) { - return false; - } const latest = postData.question.my_forecasts?.latest; return !!latest && isForecastActive(latest); }