fix: prop error in asset items component

This commit is contained in:
alter-eggo
2023-05-03 14:18:22 +04:00
committed by Anastasios
parent 4b7998054b
commit bda1343bd5
2 changed files with 0 additions and 2 deletions

View File

@@ -28,7 +28,6 @@ interface CryptoCurrencyAssetItemLayoutProps extends StackProps {
address?: string;
canCopy?: boolean;
isHovered?: boolean;
hasCopied?: boolean;
currency?: CryptoCurrencies;
}
export const CryptoCurrencyAssetItemLayout = forwardRefWithAs(

View File

@@ -71,7 +71,6 @@ export const CryptoCurrencyAssetItem = forwardRefWithAs(
subBalance={assetSubBalance?.balance}
title={asset.name}
isHovered={isHovered}
hasCopied={hasCopied}
address={address}
usdBalance={usdBalance}
onClick={onClick}