Skip to content

Commit

Permalink
fix: onBuyWithCrypto missing parameter (#2208)
Browse files Browse the repository at this point in the history
  • Loading branch information
juanmahidalgo committed Apr 2, 2024
1 parent d145fe8 commit 1935854
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/src/components/AssetPage/Actions/Actions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const Actions = (props: Props) => {
</>
) : !isOwner ? (
<>
<BuyWithCryptoButton asset={nft} onClick={() => onBuyWithCrypto} />
<BuyWithCryptoButton asset={nft} onClick={() => onBuyWithCrypto(order)} />
{canBid ? (
<Button as={Link} to={locations.bid(contractAddress, tokenId)} fluid>
{t('asset_page.actions.bid')}
Expand Down

0 comments on commit 1935854

Please sign in to comment.