Skip to content

Commit

Permalink
revert changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Rishith25 committed Jan 22, 2025
1 parent 62eca92 commit 194ecb3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 4 additions & 1 deletion src/components/Patient/diagnosis/DiagnosisTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,10 @@ export function DiagnosisTable({
className="w-4 h-4"
imageUrl={diagnosis.created_by?.profile_picture_url}
/>
<span className="text-sm">{diagnosis.created_by?.username}</span>
<span className="text-sm">
{diagnosis.created_by?.first_name}{" "}
{diagnosis.created_by?.last_name}
</span>
</TableCell>
</TableRow>
))}
Expand Down
4 changes: 3 additions & 1 deletion src/components/Patient/symptoms/SymptomTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,9 @@ export function SymptomTable({
className="w-4 h-4"
imageUrl={symptom.created_by?.profile_picture_url}
/>
<span className="text-sm">{symptom.created_by?.username}</span>
<span className="text-sm">
{symptom.created_by?.first_name} {symptom.created_by?.last_name}
</span>
</TableCell>
</TableRow>
))}
Expand Down

0 comments on commit 194ecb3

Please sign in to comment.