Skip to content

Commit

Permalink
Remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Raphiiko committed Jul 8, 2024
1 parent f5acc2e commit 44984cf
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src-ui/app/components/device-list/device-list.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,6 @@ export class DeviceListComponent implements OnInit {
}

async rightClickBulkPowerLighthouseDevices() {
console.log('TRIGGER');
this.showLHStatePopover = !this.showLHStatePopover;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ export class VRChatLoginModalComponent
this.username = credentials.username;
this.password = credentials.password;
if (this.autoLogin) {
console.log('STARTING AUTOLOGIN');
await this.login();
}
}
Expand Down
1 change: 0 additions & 1 deletion src-ui/app/services/cct-control/cct-control.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ export class CCTControlService {
!!devices.length &&
devices.find((d) => d.index === 0)?.class === 'HMD';
if (ready && !this.hardwareReady) {
console.log({ ready, hardwareReady: this.hardwareReady });
this.hardwareReady = ready;
this.setCCT(this.cct, SET_BRIGHTNESS_OR_CCT_OPTIONS_DEFAULTS, true);
}
Expand Down

0 comments on commit 44984cf

Please sign in to comment.