25b67009a6
* feat: add a global zustand store for managing connect dialogs and landing dialog * feat: add tests * fix: remove condition for cypress for auto connecting * chore: fix assertion in tests for vega wallet text * fix: add mock for landing dialog markets query Co-authored-by: madalinaraicu <madalina@vegaprotocol.io>
39 lines
1.1 KiB
TypeScript
39 lines
1.1 KiB
TypeScript
import { useRouter } from 'next/router';
|
|
import { useMemo } from 'react';
|
|
import { WithdrawPageContainer } from './withdraw-page-container';
|
|
import { t } from '@vegaprotocol/react-helpers';
|
|
import { VegaWalletContainer } from '../../../components/vega-wallet-container';
|
|
import { Web3Container } from '../../../components/web3-container';
|
|
|
|
const Withdraw = () => {
|
|
const { query } = useRouter();
|
|
|
|
// AssetId can be specified in the query string to allow link to deposit a particular asset
|
|
const assetId = useMemo(() => {
|
|
if (query.assetId && Array.isArray(query.assetId)) {
|
|
return undefined;
|
|
}
|
|
|
|
if (Array.isArray(query.assetId)) {
|
|
return undefined;
|
|
}
|
|
|
|
return query.assetId;
|
|
}, [query]);
|
|
|
|
return (
|
|
<VegaWalletContainer>
|
|
<Web3Container
|
|
render={() => (
|
|
<div className="max-w-[420px] p-24 mx-auto">
|
|
<h1 className="text-h3 mb-12">{t('Withdraw')}</h1>
|
|
<WithdrawPageContainer assetId={assetId} />
|
|
</div>
|
|
)}
|
|
/>
|
|
</VegaWalletContainer>
|
|
);
|
|
};
|
|
|
|
export default Withdraw;
|