mirror of
https://github.com/Fluffy-Bean/TastyBites.git
synced 2024-12-26 17:36:15 +00:00
Fix the checkout
This commit is contained in:
parent
ce2a5c0979
commit
9063552459
|
@ -38,9 +38,7 @@
|
|||
} else {
|
||||
totalPrice = 1.50 + Cart.getTotalPrice();
|
||||
}
|
||||
unavailableItems = Cart.getEntries().some(([_, item]) => {
|
||||
item.data.availability === false
|
||||
});
|
||||
unavailableItems = Cart.getEntries().some(([_, item]) => !item.data.availability);
|
||||
});
|
||||
|
||||
let leafletMap: Map;
|
||||
|
|
Loading…
Reference in a new issue