From 116ce00507124a68718eb4c9a432ed2a41c1e22e Mon Sep 17 00:00:00 2001 From: truemiller Date: Wed, 18 Dec 2024 16:08:36 +0000 Subject: [PATCH] fix: remove unused evmHomeChainId from YourWalletPage component --- frontend/components/YourWalletPage/index.tsx | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/components/YourWalletPage/index.tsx b/frontend/components/YourWalletPage/index.tsx index 852cfc3f..c500bad3 100644 --- a/frontend/components/YourWalletPage/index.tsx +++ b/frontend/components/YourWalletPage/index.tsx @@ -75,7 +75,7 @@ const OlasBalance = () => { const { selectedAgentConfig } = useServices(); const { totalStakedOlasBalance } = useBalanceContext(); const { masterWalletBalances } = useMasterBalances(); - const { middlewareChain, evmHomeChainId } = useYourWallet(); + const { middlewareChain } = useYourWallet(); const masterSafeOlasBalance = masterWalletBalances ?.filter( diff --git a/package.json b/package.json index 86060bb8..5743c7e5 100644 --- a/package.json +++ b/package.json @@ -73,7 +73,7 @@ "start:frontend": "cd frontend && yarn start", "test:frontend": "cd frontend && yarn test" }, - "version": "0.2.0-rc39", + "version": "0.2.0-rc43", "engine": { "node": ">=20", "yarn": ">=1.22.0",