Skip to content

Commit

Permalink
fix: balance issue
Browse files Browse the repository at this point in the history
  • Loading branch information
viet-nv committed Nov 29, 2023
1 parent b3c43d0 commit e14c9ec
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/components/SearchModal/CurrencyList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,6 @@ function CurrencyList({
style={{ ...style, ...itemStyle }}
currency={currency}
currencyBalance={currencyBalance}
customBalance={<div />}
isSelected={isSelected}
showFavoriteIcon={showFavoriteIcon}
onSelect={onCurrencySelect}
Expand Down
7 changes: 7 additions & 0 deletions src/pages/NotificationCenter/CreateAlert/CreateAlertForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,13 @@ export default function CreateAlert({
</Text>
</Flex>
)}
optionRender={item => {
return (
<MouseoverTooltip text="">
<Text sx={{ padding: '10px 18px', cursor: 'pointer' }}>{item?.label}</Text>
</MouseoverTooltip>
)
}}
/>

<Flex sx={{ gap: '12px' }}>
Expand Down

0 comments on commit e14c9ec

Please sign in to comment.