Skip to content

Commit 8d40c7a

Browse files
committed
Remove empty lines
1 parent 05a57ea commit 8d40c7a

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

components/Cart/ShowCartContents.vue

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ export default {
7878
query: GET_CART_QUERY,
7979
result({ data, loading, networkStatus }) {
8080
const cartIsReady = data && networkStatus === 7
81-
8281
if (cartIsReady && !loading) {
8382
this.loading = false
8483
this.remoteCart = data
@@ -101,13 +100,11 @@ export default {
101100
methods: {
102101
async handleRemoveProduct(products) {
103102
this.removingCartItem = true
104-
105103
const updatedItems = []
106104
updatedItems.push({
107105
key: products.key,
108106
quantity: 0,
109107
})
110-
111108
try {
112109
await this.$apollo
113110
.mutate({

0 commit comments

Comments
 (0)