mirror of
https://github.com/Fluffy-Bean/TastyBites.git
synced 2025-06-13 13:43:13 +00:00
Fix the checkout
This commit is contained in:
parent
ce2a5c0979
commit
9063552459
1 changed files with 1 additions and 3 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue