diff --git a/Sources/BraveWallet/Crypto/NFT/NFTDetailView.swift b/Sources/BraveWallet/Crypto/NFT/NFTDetailView.swift index 623d5bd4cd3..ce42df78091 100644 --- a/Sources/BraveWallet/Crypto/NFT/NFTDetailView.swift +++ b/Sources/BraveWallet/Crypto/NFT/NFTDetailView.swift @@ -103,6 +103,10 @@ struct NFTDetailView: View { Text(nftDetailStore.nft.name) .foregroundColor(Color(.secondaryBraveLabel)) } + .transaction { transaction in + transaction.animation = nil + transaction.disablesAnimations = true + } } .listRowInsets(.zero) .listRowBackground(Color.clear)