Skip to content

Commit eed152c

Browse files
committed
fix(questions): Remark.p cannot in p
1 parent a3cb6e2 commit eed152c

File tree

1 file changed

+2
-2
lines changed
  • app/(admin)/(question-management)/questions/[id]/_components

1 file changed

+2
-2
lines changed

app/(admin)/(question-management)/questions/[id]/_components/header.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ function HeaderMain({ id }: { id: string }) {
3838
<Badge variant="outline">{question.category}</Badge>
3939
<Badge variant={difficultyInfo.variant}>{difficultyInfo.label}</Badge>
4040
</div>
41-
<p className="text-muted-foreground">
41+
<div className="text-muted-foreground">
4242
<Remark>{description}</Remark>
43-
</p>
43+
</div>
4444
</div>
4545
);
4646
}

0 commit comments

Comments
 (0)