Skip to content

Commit

Permalink
fix(auth) [PM-17047] Change clientType expression to assignment (#12865)
Browse files Browse the repository at this point in the history
Fixes a bug where we had an expression (`===`) that should be an assignment (`=`).

Feature Flag: UnauthenticatedExtensionUIRefresh
  • Loading branch information
rr-bw authored Jan 14, 2025
1 parent 8621e8a commit 27e8a1f
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,7 @@ export class LoginDecryptionOptionsComponent implements OnInit {
private userDecryptionOptionsService: UserDecryptionOptionsServiceAbstraction,
private validationService: ValidationService,
) {
// FIXME: Remove when updating file. Eslint update
// eslint-disable-next-line @typescript-eslint/no-unused-expressions
this.clientType === this.platformUtilsService.getClientType();
this.clientType = this.platformUtilsService.getClientType();
}

async ngOnInit() {
Expand Down

0 comments on commit 27e8a1f

Please sign in to comment.