chore: release [ci skip]

This commit is contained in:
gitea-actions
2026-05-14 03:39:58 +00:00
parent 8e9e48d9b4
commit 378e381454
6 changed files with 12 additions and 9 deletions
+2 -2
View File
@@ -124,11 +124,11 @@ export function CartProvider({ children }: { children: React.ReactNode }) {
};
if (error) {
createCartFunc();
createCartFunc();
} else if (!cartId) {
const localCartId = localStorage.getItem(CART_ID);
if (localCartId) setCartId(localCartId);
else createCartFunc();
else createCartFunc();
}
}, [eateryData, createCart, data, loading, error]);