ab77e99f96
* feat: handle withdrawal limits * feat: add withdraw limit ui to withdraw form * chore: lint error * fix: mock network param query for e2e tests * fix: wrong translation in tests * fix: withdrawals test and revert change in text for trade grid elements * fix: add check for signature length before progressing withdraw
16 lines
423 B
TypeScript
16 lines
423 B
TypeScript
import { t } from '@vegaprotocol/react-helpers';
|
|
import { AnchorButton } from '@vegaprotocol/ui-toolkit';
|
|
|
|
export const DepositsContainer = () => {
|
|
return (
|
|
<div className="grid grid-cols-[1fr_min-content] gap-12 h-full">
|
|
<div />
|
|
<div className="p-12">
|
|
<AnchorButton data-testid="deposit" href="/portfolio/deposit">
|
|
{t('Deposit')}
|
|
</AnchorButton>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|