Skip to content

Commit e82834b

Browse files
committed
debounce time removed for better validations of fields
1 parent 5b2437f commit e82834b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/app/ubs/ubs/components/ubs-personal-information/ubs-personal-information.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ export class UBSPersonalInformationComponent extends FormBaseComponent implement
164164
this.senderEmail.setValue('');
165165
});
166166

167-
this.personalDataForm.valueChanges.pipe(debounceTime(400), takeUntil(this.$destroy)).subscribe(() => {
167+
this.personalDataForm.valueChanges.pipe(takeUntil(this.$destroy)).subscribe(() => {
168168
if (!this.isAnotherClient.value) {
169169
this.senderFirstName.setValue(this.firstName.value, { emitEvent: false });
170170
this.senderLastName.setValue(this.lastName.value, { emitEvent: false });

0 commit comments

Comments
 (0)