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 9b22e86 commit 90b789cCopy full SHA for 90b789c
app/(app)/challenges/_question/index.tsx
@@ -41,7 +41,7 @@ export default function QuestionCard({
41
const solvedStatus = getQuestionSolvedStatus(question);
42
43
return (
44
- <div className="flex overflow-hidden rounded">
+ <article className="flex overflow-hidden rounded">
45
{/* Question Body */}
46
<div className="flex-1 space-y-3 bg-white p-4">
47
<div>
@@ -61,7 +61,7 @@ export default function QuestionCard({
61
62
{/* Operation Button */}
63
<OperationButton href={`/challenges/${question.id}`} />
64
- </div>
+ </article>
65
);
66
}
67
0 commit comments