diff --git a/src/__swaps__/screens/Swap/components/TokenList/TokenToBuyList.tsx b/src/__swaps__/screens/Swap/components/TokenList/TokenToBuyList.tsx index 1e59b8aae87..8abd43133c1 100644 --- a/src/__swaps__/screens/Swap/components/TokenList/TokenToBuyList.tsx +++ b/src/__swaps__/screens/Swap/components/TokenList/TokenToBuyList.tsx @@ -154,11 +154,11 @@ export const TokenToBuyList = () => { return ( + } ListFooterComponent={} - ListHeaderComponent={} contentContainerStyle={{ paddingBottom: 16 }} data={sections} getItemLayout={getItemLayout} diff --git a/src/__swaps__/screens/Swap/components/TokenList/TokenToSellList.tsx b/src/__swaps__/screens/Swap/components/TokenList/TokenToSellList.tsx index 5b12988476b..e23d5208845 100644 --- a/src/__swaps__/screens/Swap/components/TokenList/TokenToSellList.tsx +++ b/src/__swaps__/screens/Swap/components/TokenList/TokenToSellList.tsx @@ -86,27 +86,29 @@ const TokenToSellListComponent = () => { }); return ( - } - ListFooterComponent={} - ListHeaderComponent={} - contentContainerStyle={{ paddingBottom: 16 }} - data={userAssetIds} - getItemLayout={getItemLayout} - keyExtractor={uniqueId => uniqueId} - renderItem={({ item: uniqueId }) => { - return handleSelectToken(asset)} output={false} uniqueId={uniqueId} />; - }} - renderScrollComponent={props => { - return ( - - ); - }} - style={{ height: EXPANDED_INPUT_HEIGHT - 77, width: DEVICE_WIDTH - 24 }} - /> + <> + + } + ListFooterComponent={} + contentContainerStyle={{ paddingBottom: 16 }} + data={userAssetIds} + getItemLayout={getItemLayout} + keyExtractor={uniqueId => uniqueId} + renderItem={({ item: uniqueId }) => { + return handleSelectToken(asset)} output={false} uniqueId={uniqueId} />; + }} + renderScrollComponent={props => { + return ( + + ); + }} + style={{ height: EXPANDED_INPUT_HEIGHT - 77, width: DEVICE_WIDTH - 24 }} + /> + ); };