Skip to content

Commit bff6344

Browse files
committed
[Wishlist] Remove name from WishlistOutput #920
1 parent 0977e94 commit bff6344

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/code/Magento/WishlistGraphQl/Model/Resolver/CustomerWishlistsResolver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public function resolve(
4747
}
4848
$collection = $this->_wishlistCollectionFactory->create()->filterByCustomerId($context->getUserId());
4949
$wishlistsData = [];
50-
if (0 === $collection->getSize()) {
50+
if (0 === $collection->getSize()) {
5151
return $wishlistsData;
5252
}
5353
$wishlists = $collection->getItems();

0 commit comments

Comments
 (0)