Skip to content

Commit fdc7c55

Browse files
committed
[CodeFactor] Apply fixes
1 parent c4a11a4 commit fdc7c55

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nuxt3/components/Cart/CartContents.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,10 @@ defineProps({
6666
const { data } = await useAsyncQuery(GET_CART_QUERY)
6767
6868
const handleRemoveProduct = ({ key }) => {
69-
let updatedItems = []
69+
const updatedItems = []
7070
7171
updatedItems.push({
72-
key: key,
72+
key,
7373
quantity: 0,
7474
})
7575

0 commit comments

Comments
 (0)