Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix ratings
Browse files Browse the repository at this point in the history
kattylucy committed Oct 16, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 3893164 commit 7dbbe5e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion centrifuge-app/src/components/PoolOverview/KeyMetrics.tsx
Original file line number Diff line number Diff line change
@@ -200,9 +200,10 @@ export const KeyMetrics = ({ poolId }: Props) => {
borderRadius={20}
padding="2px 10px"
display="flex"
alignItems="center"
>
{rating.agency?.includes('moody') ? <IconMoody size={16} /> : <IconSp size={16} />}
<Text>{rating.value}</Text>
<Text style={{ marginLeft: 4 }}>{rating.value}</Text>
</Box>
</Tooltip>
))}

0 comments on commit 7dbbe5e

Please sign in to comment.