diff --git a/front_end/src/components/post_card/question_tile/prediction_continuous_info.tsx b/front_end/src/components/post_card/question_tile/prediction_continuous_info.tsx index 571722f47e..34b6a25e93 100644 --- a/front_end/src/components/post_card/question_tile/prediction_continuous_info.tsx +++ b/front_end/src/components/post_card/question_tile/prediction_continuous_info.tsx @@ -9,7 +9,6 @@ import ContinuousCPBar from "@/components/post_card/question_tile/continuous_cp_ import { useHideCP } from "@/contexts/cp_context"; import { QuestionStatus } from "@/types/post"; import { QuestionWithNumericForecasts, UserForecast } from "@/types/question"; -import { isForecastActive } from "@/utils/forecasts/helpers"; import { formatResolution } from "@/utils/formatters/resolution"; import { isSuccessfullyResolved } from "@/utils/questions/resolution"; @@ -82,19 +81,17 @@ const PredictionContinuousInfo: FC = ({ /> )} - {showMyPrediction && - question.my_forecasts?.latest && - isForecastActive(question.my_forecasts.latest) && ( -
- -
- )} + {showMyPrediction && question.my_forecasts?.latest && ( +
+ +
+ )} ); };