Skip to content

Commit 90b789c

Browse files
committed
fix(challenges): use semantic HTML tag
1 parent 9b22e86 commit 90b789c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/(app)/challenges/_question/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export default function QuestionCard({
4141
const solvedStatus = getQuestionSolvedStatus(question);
4242

4343
return (
44-
<div className="flex overflow-hidden rounded">
44+
<article className="flex overflow-hidden rounded">
4545
{/* Question Body */}
4646
<div className="flex-1 space-y-3 bg-white p-4">
4747
<div>
@@ -61,7 +61,7 @@ export default function QuestionCard({
6161

6262
{/* Operation Button */}
6363
<OperationButton href={`/challenges/${question.id}`} />
64-
</div>
64+
</article>
6565
);
6666
}
6767

0 commit comments

Comments
 (0)