mirror of
https://iceshrimp.dev/Crimekillz/jointrashposs.git
synced 2024-11-22 08:53:49 +01:00
(refactor) delete console.log
This commit is contained in:
parent
2999386ce6
commit
b5cbdc9c40
@ -47,7 +47,6 @@ const findDeepObject = (obj: Record<string, any>, condition: (v: any) => boolean
|
||||
|
||||
if (obj?.children && obj.children.length > 0) {
|
||||
for (let i = 0; i < obj.children.length; i++) {
|
||||
console.log(obj.children[i]);
|
||||
const result = findDeepObject(obj.children[i], condition);
|
||||
if (result) {
|
||||
return result;
|
||||
|
@ -50,7 +50,6 @@ type InstancesStatsObj = {
|
||||
const instancesStats = ref<InstancesStatsObj>();
|
||||
|
||||
function setServerStats(val: InstancesStatsObj) {
|
||||
console.log(val);
|
||||
instancesStats.value = val;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user