Skip to content

Commit

Permalink
fix: Fix type
Browse files Browse the repository at this point in the history
  • Loading branch information
Halibao-Lala committed Nov 11, 2024
1 parent 6779d34 commit 1a322d2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export function ToAccount(props: FlexProps) {
if (!toAccount.address) setInputValue('');
}, [toAccount.address]);

const { isInvalid, isAvailableAccount } = useMemo(() => {
const { isInvalid } = useMemo(() => {
if (isTronTransfer) {
return {
isInvalid:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ export function ToSection() {
const toChain = useAppSelector((state) => state.transfer.toChain);

return (
<Flex
<Flex
className="bccb-widget-network-to"
flexDir="column"
gap={'12px'}
gap={'8px'}
w={'100%'}
flex={1}
h={'64px'}
h={'48px'}
>
<Flex className="bccb-widget-network-to" flexDir="column" gap={'8px'} w={'100%'} flex={1} h={'48px'}>
<Flex
className="bccb-widget-network-title"
alignItems="center"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export function TransferWidget() {
<TransferButtonGroup />
</Flex>
<Box display={{ base: 'block', lg: 'none' }}>{routeContentBottom}</Box>
</Flex
</Flex>
<Box className="bccb-widget-route-bottom" display={{ base: 'none', lg: 'flex' }}>
<TransferOverview routeContentBottom={routeContentBottom} />
</Box>
Expand Down

0 comments on commit 1a322d2

Please sign in to comment.