Skip to content

Commit

Permalink
chore: show debt without braces
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtemSBulgakov committed Nov 20, 2024
1 parent df0ac49 commit 7527642
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/dashboard/SportsWidget.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export function SportsWidget() {
Sports:{" "}
<span className="font-normal">
{earnedHours} / {semesterHours}
{debtHours ? ` (+${debtHours} debt)` : null} hours
{debtHours ? `+${debtHours} (debt)` : null} hours
</span>
</p>
<p className="mt-2 text-lg text-contrast/75">
Expand Down

0 comments on commit 7527642

Please sign in to comment.