Skip to content

Commit

Permalink
fix: always bold pool name
Browse files Browse the repository at this point in the history
  • Loading branch information
amytsang committed Nov 19, 2024
1 parent 4eee332 commit fbc4bc1
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions apps/main/src/components/PoolLabel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,8 @@ const PoolLabel = ({ className = '', imageBaseUrl, isVisible = true, poolData, p
)}
</>
)}
{pool && (
<ChipPool poolAddress={pool.address} poolName={pool.name} isHighlightPoolName={isHighlightPoolName} />
)}
{/* isHighlightPoolName = default to true now, even if searched text is not same result */}
{pool && <ChipPool poolAddress={pool.address} poolName={pool.name} isHighlightPoolName />}
</Box>

<PoolLabelTokensWrapper>
Expand Down

0 comments on commit fbc4bc1

Please sign in to comment.