Skip to content

Commit

Permalink
minor color fix (PalisadoesFoundation#1919)
Browse files Browse the repository at this point in the history
  • Loading branch information
pranshugupta54 authored Apr 22, 2024
1 parent 59ac8d0 commit bddd7a2
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/screens/OrganizationFunds/OrganizationFunds.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,14 @@ const organizationFunds = (): JSX.Element => {
data-testid="fundName"
onClick={() => handleClick(fund._id)}
>
{fund.name}
<span
style={{
color: 'rgba(23, 120, 242, 1)',
cursor: 'pointer',
}}
>
{fund.name}
</span>
</StyledTableCell>
<StyledTableCell
align="center"
Expand Down

0 comments on commit bddd7a2

Please sign in to comment.