Skip to content

Commit

Permalink
fix(fe): fix wrong output description (#1530)
Browse files Browse the repository at this point in the history
  • Loading branch information
dotoleeoak authored Mar 1, 2024
1 parent e8afddb commit 52516de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend-client/components/EditorDescription.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export function EditorDescription({ problem }: { problem: ProblemDetail }) {
<div
className="prose prose-invert max-w-full text-sm leading-relaxed text-slate-300"
dangerouslySetInnerHTML={{
__html: sanitize(problem.inputDescription)
__html: sanitize(problem.outputDescription)
}}
/>
</div>
Expand Down

0 comments on commit 52516de

Please sign in to comment.