File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed
Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ import {
6161import { FeeAmount } from 'v3lib/utils' ;
6262import { BondToken } from 'types/bond' ;
6363
64- export const bondAPIV2BaseURL = 'https://api-v2.apeswap.finance ' ;
64+ export const bondAPIV2BaseURL = 'https://api.ape.bond ' ;
6565export const CEX_BILL_ADDRESS = '0x6D7637683eaD28F775F56506602191fdE417fF60' ;
6666
6767export const AVERAGE_L1_BLOCK_TIME = 12000 ;
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ const TransferBillModal: React.FC<TransferBillModalProps> = ({
4545 < Box p = '20px' >
4646 < Box className = 'flex justify-between border-bottom' pb = '16px' >
4747 < h5 > { t ( 'tranferBond' ) } </ h5 >
48- < Close />
48+ < Close className = 'cursor-pointer' onClick = { onClose } />
4949 </ Box >
5050 < Box className = 'flex' mt = '20px' >
5151 < p > { t ( 'transferring' ) } : </ p >
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ import { formatUnits } from 'ethers/lib/utils';
1818import { formatNumber } from 'utils' ;
1919import { useCurrency , useCurrencyFromSymbol } from 'hooks/Tokens' ;
2020import { CurrencyLogo , DoubleCurrencyLogo } from 'components' ;
21+ import { Close } from '@material-ui/icons' ;
2122
2223interface BondModalProps {
2324 onDismiss ?: ( ) => void ;
@@ -81,6 +82,9 @@ const UserBondModalView: React.FC<BondModalProps> = ({
8182 chainId = { chainId }
8283 />
8384 ) }
85+ < Box mb = { 1 } className = 'flex justify-end' >
86+ < Close className = 'cursor-pointer' onClick = { onDismiss } />
87+ </ Box >
8488 < Grid container spacing = { 2 } >
8589 < Grid item xs = { 12 } sm = { 12 } md = { 6 } >
8690 < Box className = 'flex' >
You can’t perform that action at this time.
0 commit comments