diff options
Diffstat (limited to 'src/contexts/ProductCartContext.js')
| -rw-r--r-- | src/contexts/ProductCartContext.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/contexts/ProductCartContext.js b/src/contexts/ProductCartContext.js index 3a21d2e0..06e97563 100644 --- a/src/contexts/ProductCartContext.js +++ b/src/contexts/ProductCartContext.js @@ -6,11 +6,10 @@ export const ProductCartProvider = ({ children }) => { const [productCart, setProductCart] = useState(null) const [refreshCart, setRefreshCart] = useState(false) const [isLoading, setIsloading] = useState(false) - const [productQuotation, setProductQuotation] = useState(null) return ( <ProductCartContext.Provider - value={{ productCart, setProductCart, refreshCart, setRefreshCart, isLoading, setIsloading, productQuotation, setProductQuotation}} + value={{ productCart, setProductCart, refreshCart, setRefreshCart, isLoading, setIsloading }} > {children} </ProductCartContext.Provider> |
