diff --git a/components/ConnectionInfoModal.tsx b/components/ConnectionInfoModal.tsx index 0d15afdd..ab9fc95e 100644 --- a/components/ConnectionInfoModal.tsx +++ b/components/ConnectionInfoModal.tsx @@ -152,6 +152,7 @@ function ConnectionInfoModal({ 1 ? "are" : "is" } not using a secure (wss) connection.`} diff --git a/pages/settings/wallets/ConnectWallet.tsx b/pages/settings/wallets/ConnectWallet.tsx index ecd6d2d6..8a9f854f 100644 --- a/pages/settings/wallets/ConnectWallet.tsx +++ b/pages/settings/wallets/ConnectWallet.tsx @@ -210,7 +210,6 @@ export function ConnectWallet() { budgetRenewal={budgetRenewal} maxAmount={maxAmount} expiresAt={expiresAt} - returnTo={returnTo} metadata={metadata} /> )} @@ -232,6 +231,15 @@ export function ConnectWallet() { )} Confirm Connection + {returnTo && ( + + You will be redirected to{" "} + + {returnTo} + {" "} + after confirming. + + )} )} @@ -246,7 +254,6 @@ function ConnectView({ budgetRenewal, maxAmount, expiresAt, - returnTo, metadata, }: Omit) { const { shadow } = useThemeColor("shadow"); @@ -357,11 +364,6 @@ function ConnectView({ )} - {returnTo && ( - - You will return to {returnTo} after confirming - - )}