diff --git a/packages/mrgn-ui/src/components/wallet-v2/components/wallet-auth-accounts/wallet-auth-accounts.tsx b/packages/mrgn-ui/src/components/wallet-v2/components/wallet-auth-accounts/wallet-auth-accounts.tsx index 6b5a73050..7d2836e05 100644 --- a/packages/mrgn-ui/src/components/wallet-v2/components/wallet-auth-accounts/wallet-auth-accounts.tsx +++ b/packages/mrgn-ui/src/components/wallet-v2/components/wallet-auth-accounts/wallet-auth-accounts.tsx @@ -35,6 +35,7 @@ type WalletAuthAccountsProps = { fetchMrgnlendState: () => void; processOpts?: ProcessTransactionsClientOpts; closeOnSwitch?: boolean; + fullHeight?: boolean; popoverContentAlign?: "start" | "end" | "center"; showAddAccountButton?: boolean; accountLabels?: Record; @@ -49,6 +50,7 @@ export const WalletAuthAccounts = ({ selectedAccount, fetchMrgnlendState, closeOnSwitch = false, + fullHeight = false, popoverContentAlign = "center", showAddAccountButton = true, processOpts, @@ -276,7 +278,8 @@ export const WalletAuthAccounts = ({
diff --git a/packages/mrgn-ui/src/components/wallet-v2/wallet.tsx b/packages/mrgn-ui/src/components/wallet-v2/wallet.tsx index 17eb20411..574ff4246 100644 --- a/packages/mrgn-ui/src/components/wallet-v2/wallet.tsx +++ b/packages/mrgn-ui/src/components/wallet-v2/wallet.tsx @@ -253,6 +253,7 @@ const Wallet = ({ processOpts={processOpts} accountLabels={accountLabels} fetchAccountLabels={fetchAccountLabels} + fullHeight={true} />
)}