File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ document.addEventListener('DOMContentLoaded', function() {
1111 const totalVotes = currentVotingSection . querySelector ( '.voting-stats strong' ) ;
1212 const votingCardContainer = document . querySelector ( '.voting-card' ) ;
1313 const userVoteId = votingCardContainer . dataset . userVote ;
14- console . log ( "사용자의 기존 투표 ID:" , userVoteId ) ;
14+ // console.log("사용자의 기존 투표 ID:", userVoteId);
1515
1616 let voteData = { } ;
1717 let totalVoteCount = 0 ;
@@ -21,7 +21,7 @@ document.addEventListener('DOMContentLoaded', function() {
2121 const likeCount = parseInt ( card . dataset . like_count , 10 ) || 0 ;
2222 const productVotes = parseInt ( card . dataset . votes , 10 ) || 0 ;
2323
24- console . log ( `제품 ${ productId } : 좋아요 ${ likeCount } 개 (순위 결정용)` ) ;
24+ // console.log(`제품 ${productId}: 좋아요 ${likeCount}개 (순위 결정용)`);
2525
2626 voteData [ productId ] = {
2727 likes : likeCount ,
You can’t perform that action at this time.
0 commit comments