Skip to content

Commit 3803181

Browse files
committed
Removed console logs
1 parent 8afa451 commit 3803181

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

project/ws/app/src/lib/head/ui-admin-table/create-organisation/create-organisation.component.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,8 +150,7 @@ export class CreateOrganisationComponent implements OnInit, OnDestroy {
150150

151151
this.organisationForm.controls.organisationName.valueChanges
152152
.pipe(takeUntil(this.untilDestroyed$), debounceTime(500), distinctUntilChanged())
153-
.subscribe((value) => {
154-
console.log('Organisation Name Changed:', value)
153+
.subscribe((_value) => {
155154
const control = this.organisationForm.controls.organisationName
156155
const error = this.createDuplicateOrgNameValidator(this.organizationNameList)(control)
157156
if (error) {

0 commit comments

Comments
 (0)