Skip to content

Commit

Permalink
Applied prettier formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
koss-service committed Dec 30, 2023
1 parent b630072 commit eec810b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/pages/StudentDashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -162,10 +162,10 @@ function StudentDashboard() {
<p className="font-bold text-base">
{dashboard?.passed_mid_evals ? (
<span className="text-green-300">Passed</span>
) : MID_EVALS_ENDED ? (
<span className="text-red-500">Failed</span>
) : (
MID_EVALS_ENDED ?
<span className="text-red-500">Failed</span>
: <span className="text-yellow-400">Pending</span>
<span className="text-yellow-400">Pending</span>
)}
</p>
</div>
Expand All @@ -178,10 +178,10 @@ function StudentDashboard() {
<p className="font-bold text-base">
{dashboard?.passed_end_evals ? (
<span className="text-green-300">Passed</span>
) : END_EVALS_ENDED ? (
<span className="text-red-500">Failed</span>
) : (
END_EVALS_ENDED ?
<span className="text-red-500">Failed</span>
: <span className="text-yellow-400">Pending</span>
<span className="text-yellow-400">Pending</span>
)}
</p>
</div>
Expand Down

0 comments on commit eec810b

Please sign in to comment.