Skip to content

Commit

Permalink
fix: show full name of student instead of status on card
Browse files Browse the repository at this point in the history
  • Loading branch information
rschlaefli committed Jan 18, 2023
1 parent 0785ad6 commit 17fa54e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ function ProposalCard({
<div className="mt-1 space-y-1 text-xs">
<div>{proposal.studyLevel}</div>
<div>{proposal.topicArea.name}</div>
<div>{proposal.statusKey}</div>
<div>{proposal.applications[0].fullName}</div>
</div>
</Button>
)
Expand Down

0 comments on commit 17fa54e

Please sign in to comment.