From 395143b8d84383e09a51c7f290f0b25b74b36ee2 Mon Sep 17 00:00:00 2001 From: Spacebean Date: Tue, 8 Oct 2024 09:59:03 -0600 Subject: [PATCH] feat: fix message v3 --- projects/ui/src/components/App/SdkProvider.tsx | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/projects/ui/src/components/App/SdkProvider.tsx b/projects/ui/src/components/App/SdkProvider.tsx index c564c8b74b..9b6253197d 100644 --- a/projects/ui/src/components/App/SdkProvider.tsx +++ b/projects/ui/src/components/App/SdkProvider.tsx @@ -33,7 +33,6 @@ import useSetting from '~/hooks/app/useSetting'; import { SUBGRAPH_ENVIRONMENTS } from '~/graph/endpoints'; import { useEthersProvider } from '~/util/wagmi/ethersAdapter'; import { useSigner } from '~/hooks/ledger/useSigner'; -import { useDynamicSeeds } from '~/hooks/sdk'; const IS_DEVELOPMENT_ENV = process.env.NODE_ENV !== 'production'; @@ -108,15 +107,15 @@ export const BeanstalkSDKContext = createContext< function BeanstalkSDKProvider({ children }: { children: React.ReactNode }) { const sdk = useBeanstalkSdkContext(); - const ready = useDynamicSeeds(sdk); + // const ready = useDynamicSeeds(sdk); return ( <> - {ready && ( - - {children} - - )} + {/* {ready && ( */} + + {children} + + {/* )} */} ); }