@@ -8,8 +8,6 @@ import {BN} from "../../../utils/utils";
88
99const ChainBalance = ( { chainId} ) => {
1010
11- console . log ( "chainId in chainbalance" , chainId )
12-
1311 const [ params , setParams ] = useState ( {
1412 "excludeZero" : false ,
1513 } ) ;
@@ -22,9 +20,6 @@ const ChainBalance = ({chainId}) => {
2220 refetch ( )
2321 } , [ params ] ) ;
2422
25-
26- console . log ( "data ChainBalance" , data )
27-
2823 const content = ( ) => {
2924
3025 if ( isLoading ) return < div className = { `d-flex flex-column justify-content-center align-items-center col-12 mt-4 py-5 ${ classes . box } ` } >
@@ -49,8 +44,8 @@ const ChainBalance = ({chainId}) => {
4944
5045 < >
5146
52- < div className = { `col-12 my-2 d-flex flex-row justify-content-between col-12 mt-4 py-4 px-4 ${ classes . box } ` } >
53- < div className = { `d-flex flex-row col-5` } >
47+ < div className = { `col-12 my-2 d-flex flex-row justify-content-between align-items-center col-12 mt-4 py-4 px-4 ${ classes . box } font-size-sm ` } >
48+ < div className = { `d-flex flex-row align-items-center col-5` } >
5449 < span className = { `` } > Exclude Zero Balance</ span >
5550 < span className = { `mx-2` } > </ span >
5651 < ToggleSwitch
@@ -72,7 +67,7 @@ const ChainBalance = ({chainId}) => {
7267 checked = { params ?. excludeZero } />
7368 </ div >
7469
75- < div className = { `d-flex flex-row justify-content-center col-7 text-center` } >
70+ < div className = { `d-flex flex-row justify-content-center align-items-center col-7 text-center` } >
7671 < span className = { `` } > { total ?. chain ?. toUpperCase ( ) } </ span >
7772 < span className = { `mx-1` } > </ span >
7873 < span className = { `` } > Total Balance: </ span >
0 commit comments