소스 검색

fix tags collection selection

master
azri 4 주 전
부모
커밋
3da75e278d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      src/components/ProductList/ProductList.jsx

+ 1
- 1
src/components/ProductList/ProductList.jsx 파일 보기

@@ -72,7 +72,6 @@ const ProductList = ({ size = 99999 }) => {
72 72
     } else if (sessionStorage.getItem('amber-select-category')) {
73 73
 
74 74
       let tag = sessionStorage.getItem('amber-select-category')
75
-      if(tag == 'all') tag = ""
76 75
       dispatch(fetchProductsByTags({ tag }))
77 76
 
78 77
     }
@@ -125,6 +124,7 @@ const ProductList = ({ size = 99999 }) => {
125 124
         (product) => {
126 125
 
127 126
           if(collection == 'all'){
127
+            debugger
128 128
             return product.productType === productType
129 129
           } else {
130 130
             debugger

Loading…
취소
저장