Skip to content

Commit

Permalink
chore(suite-native): fix typo in TradeableAssetsSheet keyExtractor
Browse files Browse the repository at this point in the history
  • Loading branch information
jbazant authored and vytick committed Feb 22, 2025
1 parent da15532 commit 3419c1a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const getMockPriceChange = () => Math.random() * 3 - 1;
const keyExtractor = (
{ symbol, contractAddress }: TradeableAsset,
{ isFavourite }: ListItemExtraData,
) => `asset_${symbol}_${contractAddress ?? ''}}_${isFavourite ? 'favourite' : 'all'}`;
) => `asset_${symbol}_${contractAddress ?? ''}_${isFavourite ? 'favourite' : 'all'}`;

const renderItem = (
asset: TradeableAsset,
Expand Down

0 comments on commit 3419c1a

Please sign in to comment.