Skip to content

Commit

Permalink
Fix brave/brave-ios#8418: Solana NFT in asset search is not going to …
Browse files Browse the repository at this point in the history
…NFT details screen (brave/brave-ios#8419)
  • Loading branch information
nuo-xu authored Nov 16, 2023
1 parent f736132 commit 7bcba90
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 7bcba90

Please sign in to comment.