We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afb0a4e commit e412796Copy full SHA for e412796
src/components/Header/Cart.component.tsx
@@ -17,7 +17,7 @@ interface ICartProps {
17
const Cart: FC<ICartProps> = ({ stickyNav }) => {
18
const { cart, setCart, isLoading } = useCartStore();
19
20
- const { loading: queryLoading, error } = useQuery(GET_CART, {
+ const { loading: queryLoading } = useQuery(GET_CART, {
21
notifyOnNetworkStatusChange: true,
22
onCompleted: (data) => {
23
const updatedCart = getFormattedCart(data);
0 commit comments