Skip to content

Commit bb91600

Browse files
authored
Merge branch 'main' into crosschain-ui
2 parents da05931 + 40fa323 commit bb91600

File tree

7 files changed

+16
-8
lines changed

7 files changed

+16
-8
lines changed

apps/playground-web/src/components/in-app-wallet/ecosystem.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const getEcosystem = () => {
1111
return "ecosystem.catlovers";
1212
}
1313
// prod ecosystem
14-
return "ecosystem.new-age";
14+
return "ecosystem.thirdweb-engs";
1515
};
1616

1717
export function EcosystemConnectEmbed(

packages/thirdweb/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# thirdweb
22

3+
## 5.86.5
4+
5+
### Patch Changes
6+
7+
- [#6072](https://github.com/thirdweb-dev/js/pull/6072) [`2cebb42`](https://github.com/thirdweb-dev/js/commit/2cebb420e6a381cf41a48e17762f6c655ebe7d8c) Thanks [@joaquim-verges](https://github.com/joaquim-verges)! - Fix showing link profiles for ecosystem smart wallets
8+
39
## 5.86.4
410

511
### Patch Changes

packages/thirdweb/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "thirdweb",
3-
"version": "5.86.4",
3+
"version": "5.86.5",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/thirdweb-dev/js.git#main"

packages/thirdweb/src/react/core/hooks/wallets/useAdminWallet.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ export function useAdminWallet() {
1111
const activeWallet = useActiveWallet();
1212
const connectedWallets = useConnectedWallets();
1313
const adminAccount = activeWallet?.getAdminAccount?.();
14-
1514
if (!adminAccount) {
1615
// If the active wallet doesn't have an admin account, return the active wallet
1716
return activeWallet;

packages/thirdweb/src/react/web/ui/ConnectWallet/screens/ManageWalletScreen.tsx

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ export function ManageWalletScreen(props: {
2828
client: ThirdwebClient;
2929
manageWallet?: ConnectButton_detailsModalOptions["manageWallet"];
3030
}) {
31-
const activeWallet = useAdminWallet();
31+
const adminWallet = useAdminWallet();
32+
const activeWallet = useActiveWallet();
3233

3334
return (
3435
<Container
@@ -92,9 +93,9 @@ export function ManageWalletScreen(props: {
9293
</MenuButton>
9394

9495
{/* Private Key Export (if enabled) */}
95-
{activeWallet &&
96-
isInAppWallet(activeWallet) &&
97-
!activeWallet.getConfig()?.hidePrivateKeyExport && (
96+
{adminWallet &&
97+
isInAppWallet(adminWallet) &&
98+
!adminWallet.getConfig()?.hidePrivateKeyExport && (
9899
<MenuButton
99100
onClick={() => {
100101
props.setScreen("private-key");

packages/wagmi-adapter/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @thirdweb-dev/wagmi-adapter
22

3+
## 0.2.5
4+
35
## 0.2.4
46

57
## 0.2.3

packages/wagmi-adapter/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@thirdweb-dev/wagmi-adapter",
3-
"version": "0.2.4",
3+
"version": "0.2.5",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/thirdweb-dev/js.git#main"

0 commit comments

Comments
 (0)