Remove some log
parent
41774eaa3d
commit
a5f6e54419
|
@ -29,7 +29,6 @@
|
|||
}
|
||||
|
||||
function select(val) {
|
||||
console.log('select', val);
|
||||
selected = val;
|
||||
focused = false;
|
||||
hoveredIndex = -1;
|
||||
|
|
|
@ -17,7 +17,6 @@
|
|||
let amount = 1;
|
||||
|
||||
function select(index, item) {
|
||||
console.log(index, item);
|
||||
selected = index;
|
||||
selectedItem = item;
|
||||
}
|
||||
|
|
|
@ -187,8 +187,6 @@
|
|||
const current = Math.max(currentAscension, 0);
|
||||
const target = intendedAscension;
|
||||
|
||||
console.log(selectedCharacter.ascension);
|
||||
|
||||
const result = selectedCharacter.ascension.slice(current, target).reduce(
|
||||
(sum, character, index) => {
|
||||
if (character.mora === 0) {
|
||||
|
@ -225,8 +223,6 @@
|
|||
|
||||
moraNeeded = moraNeeded + result.mora;
|
||||
ascensionResouce = result.items;
|
||||
|
||||
console.log(ascensionResouce);
|
||||
}
|
||||
|
||||
function calculateTalent() {
|
||||
|
@ -267,8 +263,6 @@
|
|||
});
|
||||
|
||||
moraNeeded = moraNeeded + talentMaterial.mora;
|
||||
|
||||
console.log(talentMaterial);
|
||||
}
|
||||
|
||||
function calculate() {
|
||||
|
|
|
@ -133,8 +133,6 @@ import { addTodo } from '../stores/todo';
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
console.log(allItems);
|
||||
}
|
||||
|
||||
parseData();
|
||||
|
|
|
@ -28,6 +28,5 @@ export const getCurrentDay = () => {
|
|||
day = 6;
|
||||
}
|
||||
|
||||
console.log(weekdays[day], weekdays[time.day()], time.format());
|
||||
return weekdays[day];
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue