diff --git a/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.spec.ts b/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.spec.ts index cd279b1b5..06bc18b0c 100644 --- a/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.spec.ts +++ b/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.spec.ts @@ -492,11 +492,9 @@ describe('FilterableDropdownComponent & FilterableDropdownSelectionModel', () => component.selectionModel.items = items component.selectionModel = selectionModel component.selectionModel.intersection = Intersection.Include - console.log(component.selectionModel.items[0]) component.selectionModel.set(null, ToggleableItemState.Selected) component.selectionModel.intersection = Intersection.Exclude component.selectionModel.toggleIntersection() - console.log(component.selectionModel) expect(component.selectionModel.getExcludedItems()).toEqual([ negativeNullItem, ]) diff --git a/src-ui/src/app/services/settings.service.ts b/src-ui/src/app/services/settings.service.ts index 80e3b3474..454ddc04a 100644 --- a/src-ui/src/app/services/settings.service.ts +++ b/src-ui/src/app/services/settings.service.ts @@ -602,7 +602,6 @@ export class SettingsService { ) } catch (error) { this.toastService.showError(errorMessage) - console.log(error) } this.storeSettings() @@ -614,7 +613,6 @@ export class SettingsService { }, error: (e) => { this.toastService.showError(errorMessage) - console.log(e) }, }) } @@ -636,7 +634,6 @@ export class SettingsService { this.toastService.showError( 'Error migrating update checking setting' ) - console.log(e) }, }) }