Skip to content

Commit 079a223

Browse files
committed
Merge branch 'develop' of https://github.com/pirogramming/Moodico into main-test
1 parent 3522467 commit 079a223

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

staticfiles/js/main/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)