diff --git a/web/src/pages/QuestionList.tsx b/web/src/pages/QuestionList.tsx
index 35239f0..c362d84 100644
--- a/web/src/pages/QuestionList.tsx
+++ b/web/src/pages/QuestionList.tsx
@@ -17,6 +17,7 @@ import {
import {
BookOutlined,
CheckCircleOutlined,
+ CloseCircleOutlined,
EditOutlined,
FileTextOutlined,
UnorderedListOutlined,
@@ -316,7 +317,7 @@ const QuestionList: React.FC = () => {
color={question.answer === true ? 'success' : 'error'}
className={styles.trueFalseTag}
>
- {question.answer === true ? '正确' : '错误'}
+ {question.answer === true ? : } {question.answer === true ? '正确' : '错误'}
)}