We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a87f8b8 commit 23d3ed4Copy full SHA for 23d3ed4
ui-services/question-ui-service/src/exports/QuestionDisplayWindow.tsx
@@ -51,6 +51,9 @@ const QuestionDisplay: React.FC<QuestionDisplayProps> = ({ questionId }) => {
51
<h2 className="text-xl font-semibold mb-2 text-white break-words">
52
{question.title}
53
</h2>
54
+ <p className="text-sm text-gray-400 mb-3">
55
+ {question.topics.join(", ")} • {question.difficulty ?? "Unknown"}
56
+ </p>
57
<div className="flex flex-wrap gap-2 mb-2">
58
{question.hints.map((hint, index) => (
59
<HintDialog key={index} hint={hint} index={index} />
0 commit comments