mirror of
https://github.com/bitwarden/browser
synced 2025-12-12 14:23:32 +00:00
fix(auth) [PM-17047] Change clientType expression to assignment (#12865)
Fixes a bug where we had an expression (`===`) that should be an assignment (`=`). Feature Flag: UnauthenticatedExtensionUIRefresh
This commit is contained in:
@@ -107,9 +107,7 @@ export class LoginDecryptionOptionsComponent implements OnInit {
|
|||||||
private userDecryptionOptionsService: UserDecryptionOptionsServiceAbstraction,
|
private userDecryptionOptionsService: UserDecryptionOptionsServiceAbstraction,
|
||||||
private validationService: ValidationService,
|
private validationService: ValidationService,
|
||||||
) {
|
) {
|
||||||
// FIXME: Remove when updating file. Eslint update
|
this.clientType = this.platformUtilsService.getClientType();
|
||||||
// eslint-disable-next-line @typescript-eslint/no-unused-expressions
|
|
||||||
this.clientType === this.platformUtilsService.getClientType();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async ngOnInit() {
|
async ngOnInit() {
|
||||||
|
|||||||
Reference in New Issue
Block a user