fix: multisig app (#2173)

This commit is contained in:
Dexter Edwards 2022-11-18 13:43:44 +00:00 committed by GitHub
parent 1abd1d0ebf
commit 4dc0e7fd56
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 4 deletions

View File

@ -113,9 +113,7 @@ const Wrapper = () => {
return ( return (
<EnvironmentProvider> <EnvironmentProvider>
<NetworkLoader cache={cache}> <NetworkLoader cache={cache}>
<ContractsProvider> <App />
<App />
</ContractsProvider>
</NetworkLoader> </NetworkLoader>
</EnvironmentProvider> </EnvironmentProvider>
); );

View File

@ -17,7 +17,6 @@ export const ContractsProvider = ({ children }: { children: JSX.Element }) => {
const [contracts, setContracts] = useState<ContractsContextShape | null>( const [contracts, setContracts] = useState<ContractsContextShape | null>(
null null
); );
console.log(activeProvider);
// Create instances of contract classes. If we have an account use a signer for the // Create instances of contract classes. If we have an account use a signer for the
// contracts so that we can sign transactions, otherwise use the provider for just // contracts so that we can sign transactions, otherwise use the provider for just