Skip to content

Commit

Permalink
feat: removing_not_used_changes_2
Browse files Browse the repository at this point in the history
  • Loading branch information
varunguleriaCodes committed Jan 2, 2025
1 parent 9406be1 commit 958ef23
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions ui/snippets/searchBar/SearchBarSuggest/SearchBarSuggest.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -179,9 +179,8 @@ const SearchBarSuggest = ({ query, searchTerm, onItemClick, containerId }: Props
addressFormat={ settingsContext?.addressFormat }
/>
)) }
{ cat.id === 'app' && itemsGroups[cat.id]?.map((item, index) => (
<SearchBarSuggestApp key={ index } data={ item } isMobile={ isMobile } searchTerm={ searchTerm } onClick={ onItemClick }/>
),
{ cat.id === 'app' && itemsGroups[cat.id]?.map((item, index) =>
<SearchBarSuggestApp key={ index } data={ item } isMobile={ isMobile } searchTerm={ searchTerm } onClick={ onItemClick }/>,
) }
</Element>
);
Expand Down

0 comments on commit 958ef23

Please sign in to comment.