Skip to content

Commit

Permalink
fix: 북마크 상품 목록 조회 함수 수정 #109
Browse files Browse the repository at this point in the history
  • Loading branch information
chaewss committed Jan 2, 2024
1 parent d0a287e commit 905ac72
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ public Long countByUserProductBookmark(User loginUser) {
return queryFactory.select(product.count())
.from(product)
.leftJoin(productBookmark)
.on(productBookmark.product.eq(product).and(productLikeUserEq(loginUser)))
.on(productBookmark.product.eq(product).and(productBookmarkUserEq(loginUser)))
.where(
product.in(
selectDistinct(sellAt.product)
Expand Down

0 comments on commit 905ac72

Please sign in to comment.