Ver código fonte

fix tags collection selection

master
azri 4 semanas atrás
pai
commit
3da75e278d
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1
    1
      src/components/ProductList/ProductList.jsx

+ 1
- 1
src/components/ProductList/ProductList.jsx Ver arquivo

@@ -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

Carregando…
Cancelar
Salvar