diff --git a/src/web/questions/pages/QuestionPage.tsx b/src/web/questions/pages/QuestionPage.tsx index 0429c72..ea921a3 100644 --- a/src/web/questions/pages/QuestionPage.tsx +++ b/src/web/questions/pages/QuestionPage.tsx @@ -91,17 +91,19 @@ const LargeQuestionCard: React.FC<{
- {question.platform.id === "guesstimate" && question.visualization ? ( - - Guesstimate Screenshot - - ) : ( - - )} + { + question.platform.id === "guesstimate" && question.visualization ? ( + + Guesstimate Screenshot + + ) : question.options.length > 0 ? ( + + ) : null /* Don't display chart if there are no options, for now. */ + }