Skip to content

Commit 252648d

Browse files
authored
fix: [lw-12355] fix search bar visibility in assets page (#1725)
1 parent 6a24620 commit 252648d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/browser-extension-wallet/src/views/browser-view/features/assets/components/AssetsPortfolio/AssetPortfolioContent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export const AssetPortfolioContent = ({
6868

6969
return (
7070
<>
71-
{assetList?.length > MIN_ASSETS_COUNT_FOR_SEARCH && (
71+
{totalAssets > MIN_ASSETS_COUNT_FOR_SEARCH && (
7272
<div className={styles.searchBoxContainer}>
7373
<SearchBox
7474
placeholder={t('browserView.assets.searchPlaceholder')}

0 commit comments

Comments
 (0)