Skip to content

Commit ec53db1

Browse files
committed
Fix broken story
1 parent f8eb8b2 commit ec53db1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/hooks/src/stories/UseContract.stories.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { storiesOf } from '@storybook/react';
22
import React from 'react';
3-
import { Provider, useWallet, useContract } from '..';
3+
import { Provider, useWallet, useContract, NETWORKS } from '..';
44
import { Button, Input, Divider, VStack } from '@chakra-ui/react';
55
import { ethers } from 'ethers';
66

@@ -129,7 +129,7 @@ const Default = () => {
129129
};
130130

131131
storiesOf('Hooks/useContract', module).add('Default', () => (
132-
<Provider network="rinkeby">
132+
<Provider network={NETWORKS.rinkeby}>
133133
<Default />
134134
</Provider>
135135
));

0 commit comments

Comments
 (0)