Skip to content

Commit

Permalink
chore: fix prettier errors
Browse files Browse the repository at this point in the history
  • Loading branch information
jordan-ae committed Dec 27, 2024
1 parent 6b44090 commit 2be100f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/people/WorkSpacePlanner/BountyCard/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,9 @@ const BountyCardComponent: React.FC<BountyCardProps> = ({
</Rows>
<Rows>
<span title={id}>{id}</span>
<span title={workspace?.name ?? 'No Workspace'}>{truncate(workspace?.name ?? 'No Workspace', 20)}</span>
<span title={workspace?.name ?? 'No Workspace'}>
{truncate(workspace?.name ?? 'No Workspace', 20)}
</span>
<span className="last-span">Paid?</span>
</Rows>
</CardContainer>
Expand Down

0 comments on commit 2be100f

Please sign in to comment.