Skip to content

Commit

Permalink
fix: type
Browse files Browse the repository at this point in the history
  • Loading branch information
marcomariscal committed Jul 12, 2023
1 parent 021e295 commit 20eb953
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/experimental_/widgets/nft/NftCollection.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { useQuery } from 'react-query';
import { useCollection } from '@center-inc/react';
import { Network, useCollection } from '@center-inc/react';
import axios from 'axios';
import { ImageResponse, ListResponse } from '@/components/cactiComponents';
import { ImageVariant } from '@/components/cactiComponents/ImageResponse';
Expand All @@ -9,7 +9,7 @@ import ListContainer from '../../containers/ListContainer';
import { NftAsset } from './NftAsset';

interface NftCollectionContainerProps {
network: string;
network: Network;
address: string;
name?: string;

Expand All @@ -30,7 +30,7 @@ export const NftCollection = ({
assetsToShow = 0,
}: NftCollectionContainerProps) => {
const collection = useCollection({
network: network as any,
network,
address,
});

Expand Down

0 comments on commit 20eb953

Please sign in to comment.