Skip to content

Commit c5f2679

Browse files
Fix solana send btn in Collection
1 parent ac96c60 commit c5f2679

File tree

1 file changed

+1
-2
lines changed
  • apps/ledger-live-mobile/src/screens/Nft/NftGallery

1 file changed

+1
-2
lines changed

apps/ledger-live-mobile/src/screens/Nft/NftGallery/index.tsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ type NavigationProps = BaseComposite<
3333

3434
const NftGallery = () => {
3535
const nftsFromSimplehashFeature = useFeature("nftsFromSimplehash");
36-
const llmSolanaNftsEnabled = useFeature("llmSolanaNfts")?.enabled || false;
3736
const threshold = nftsFromSimplehashFeature?.params?.threshold;
3837
const nftsFromSimplehashEnabled = nftsFromSimplehashFeature?.enabled;
3938
const navigation = useNavigation<NavigationProps["navigation"]>();
@@ -109,7 +108,7 @@ const NftGallery = () => {
109108
);
110109

111110
const isNFTDisabled = useFeature("disableNftSend")?.enabled && Platform.OS === "ios";
112-
const displaySendBtn = account.currency.id !== "solana" || llmSolanaNftsEnabled;
111+
const displaySendBtn = account.currency.id !== "solana";
113112

114113
return (
115114
<SafeAreaView isFlex edges={["bottom"]}>

0 commit comments

Comments
 (0)