UI: Refactoring code style

This commit is contained in:
Vladyslav_Prykhodko 2022-06-10 10:34:31 +03:00
parent 3b70c334cc
commit eeb6ab6a60
2 changed files with 9 additions and 10 deletions

View File

@ -29,7 +29,7 @@ import {
import { TranslateService } from '@ngx-translate/core'; import { TranslateService } from '@ngx-translate/core';
import { interval, Subscription } from 'rxjs'; import { interval, Subscription } from 'rxjs';
import { isEqual } from '@core/utils'; import { isEqual } from '@core/utils';
import {ActionNotificationShow} from "@core/notification/notification.actions"; import { ActionNotificationShow } from '@core/notification/notification.actions';
@Component({ @Component({
selector: 'tb-two-factor-auth-login', selector: 'tb-two-factor-auth-login',
@ -120,13 +120,12 @@ export class TwoFactorAuthLoginComponent extends PageComponent implements OnInit
this.verificationForm.get('verificationCode').setErrors(errors); this.verificationForm.get('verificationCode').setErrors(errors);
}, 5000); }, 5000);
} else { } else {
this.store.dispatch(new ActionNotificationShow( this.store.dispatch(new ActionNotificationShow({
{ message: error.error.message,
message: error.error.message, type: 'error',
type: 'error', verticalPosition: 'top',
verticalPosition: 'top', horizontalPosition: 'left'
horizontalPosition: 'left' }));
}));
} }
} }
); );

View File

@ -93,8 +93,8 @@ export interface AccountTwoFaSettings {
} }
export type AccountTwoFaSettingProviders = { export type AccountTwoFaSettingProviders = {
[key in TwoFactorAuthProviderType]?: TwoFactorAuthAccountConfig; [key in TwoFactorAuthProviderType]?: TwoFactorAuthAccountConfig;
} };
export interface TwoFaProviderInfo { export interface TwoFaProviderInfo {
type: TwoFactorAuthProviderType; type: TwoFactorAuthProviderType;