We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a49041 commit 8dd7610Copy full SHA for 8dd7610
1 file changed
Frontend/src/views/problems/problems.jsx
@@ -238,16 +238,9 @@ export default function ProblemPage() {
238
{item?.difficulty || "—"}
239
</span>
240
</div>
241
- <div className="mb-2 font-mono text-[10px] text-mute">
+ <div className="mb-4 font-mono text-[10px] text-mute">
242
{Number.isFinite(rating) ? `Rating: ${rating}` : "Rating: —"}
243
244
- {item?.description ? (
245
- <p className="mb-5.5 text-sm text-body line-clamp-3 leading-relaxed">
246
- {String(item.description)}
247
- </p>
248
- ) : (
249
- <p className="mb-5.5 text-sm text-mute italic">No description provided.</p>
250
- )}
251
<div className="flex items-center justify-between">
252
<Link
253
to={`/problems/${item.id}`}
0 commit comments