Skip to content

Commit

Permalink
Update DisbursementDetails.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
ceciliaromao committed Jan 26, 2024
1 parent 252dfe0 commit df797ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/DisbursementDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -198,14 +198,14 @@ export const DisbursementDetails = () => {
<div className="StatCards__card__item">
<label className="StatCards__card__item__label">Created by</label>
<div className="StatCards__card__item__value">
{disbursementDetails.details.createdBy}
{disbursementDetails.details.createdBy ?? ""}
</div>
</div>

<div className="StatCards__card__item">
<label className="StatCards__card__item__label">Started by</label>
<div className="StatCards__card__item__value">
{disbursementDetails.details.startedBy}
{disbursementDetails.details.startedBy ?? ""}
</div>
</div>
</div>
Expand Down

0 comments on commit df797ae

Please sign in to comment.