diff --git a/src-ui/app/components/device-list/device-list.component.ts b/src-ui/app/components/device-list/device-list.component.ts index 64e5a501..a102a519 100644 --- a/src-ui/app/components/device-list/device-list.component.ts +++ b/src-ui/app/components/device-list/device-list.component.ts @@ -278,7 +278,6 @@ export class DeviceListComponent implements OnInit { } async rightClickBulkPowerLighthouseDevices() { - console.log('TRIGGER'); this.showLHStatePopover = !this.showLHStatePopover; } diff --git a/src-ui/app/components/vrchat-login-modal/vrchat-login-modal.component.ts b/src-ui/app/components/vrchat-login-modal/vrchat-login-modal.component.ts index 569792c4..d3840ff9 100644 --- a/src-ui/app/components/vrchat-login-modal/vrchat-login-modal.component.ts +++ b/src-ui/app/components/vrchat-login-modal/vrchat-login-modal.component.ts @@ -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(); } } diff --git a/src-ui/app/services/cct-control/cct-control.service.ts b/src-ui/app/services/cct-control/cct-control.service.ts index 086121d5..97e93f71 100644 --- a/src-ui/app/services/cct-control/cct-control.service.ts +++ b/src-ui/app/services/cct-control/cct-control.service.ts @@ -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); }