Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

Commit

Permalink
Fix #8418: Solana NFT in asset search is not going to NFT details scr…
Browse files Browse the repository at this point in the history
…een (#8419)
  • Loading branch information
nuo-xu authored Nov 16, 2023
1 parent 705bb48 commit 5e688c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/BraveWallet/Crypto/Search/AssetSearchView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ struct AssetSearchView: View {
),
destination: {
if let selectedToken {
if selectedToken.isErc721 {
if selectedToken.isErc721 || selectedToken.isNft {
NFTDetailView(
nftDetailStore: cryptoStore.nftDetailStore(for: selectedToken, nftMetadata: allNFTMetadata[selectedToken.id]),
buySendSwapDestination: .constant(nil)
Expand Down

0 comments on commit 5e688c4

Please sign in to comment.