Skip to content

Commit

Permalink
Merge pull request #322 from imi21123/test
Browse files Browse the repository at this point in the history
Feat: 가게 리스트 필터 해제
  • Loading branch information
imi21123 authored May 26, 2024
2 parents 0f1d7ed + 5d18dea commit dded2b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/views/StoreList/StoreList.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const StoreList = ({ searchTerm = "" }) => {
});

// 검색어가 있을 경우 filteredStores를 사용하고, 없을 경우 기존 stores를 사용
displayStores = searchTerm ? filteredStores : displayStores;
displayStores = searchTerm ? filteredStores : stores;

return (
<div className="store_list">
Expand Down

0 comments on commit dded2b6

Please sign in to comment.