diff --git a/dapp/src/components/Header/ConnectWallet.tsx b/dapp/src/components/Header/ConnectWallet.tsx
index 32072522b..fad9aa380 100644
--- a/dapp/src/components/Header/ConnectWallet.tsx
+++ b/dapp/src/components/Header/ConnectWallet.tsx
@@ -69,6 +69,32 @@ export default function ConnectWallet() {
)
}
+ const options = [
+ {
+ id: "Copy",
+ icon: IconCopy,
+ label: hasCopied ? "Address copied" : "Copy Address",
+ onClick: onCopy,
+ isSupported: true,
+ closeOnSelect: false,
+ },
+ {
+ id: "Change account",
+ icon: IconUserCode,
+ label: "Change account",
+ onClick: () => handleConnectWallet(true),
+ isSupported: isChangeAccountFeatureSupported(embeddedApp),
+ closeOnSelect: true,
+ },
+ {
+ id: "Disconnect",
+ icon: IconLogout,
+ label: "Disconnect",
+ onClick: onDisconnect,
+ closeOnSelect: true,
+ isSupported: true,
+ },
+ ]
return isMobile ? (