Skip to content

Commit

Permalink
fix:消し忘れていたconsolelog削除
Browse files Browse the repository at this point in the history
  • Loading branch information
MinamizonoEno committed Aug 31, 2023
1 parent 73e2371 commit f8d38e8
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/components/Branch.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,29 +35,25 @@ export const Branch = ({
switch (emotionData.emoId) {
case 1:
increaseEmotion(0);
console.log('test');
// 同じ感情が来ているかどうか確認
if (EmotionList[0] > 1) {
setOverlap(true);
}
break;
case 2:
increaseEmotion(1);
console.log('test');
if (EmotionList[1] > 1) {
setOverlap(true);
}
break;
case 3:
increaseEmotion(2);
console.log('test');
if (EmotionList[2] > 1) {
setOverlap(true);
}
break;
case 4:
increaseEmotion(3);
console.log('test');
if (EmotionList[3] > 1) {
setOverlap(true);
}
Expand Down

0 comments on commit f8d38e8

Please sign in to comment.