mirror of
https://codeberg.org/keyoxide/doipjs.git
synced 2024-12-22 22:49:28 -07:00
fix: fix linting issues
This commit is contained in:
parent
6eb2435127
commit
decda24d26
1 changed files with 1 additions and 1 deletions
|
@ -328,7 +328,7 @@ export class Claim {
|
|||
displayName = this._matches[0].profile.display
|
||||
displayUrl = this._matches[0].profile.uri
|
||||
displayServiceProviderName = this._matches[0].about.name
|
||||
} else if (this._status == ClaimStatus.MATCHED && !this.isAmbiguous()) {
|
||||
} else if (this._status === ClaimStatus.MATCHED && !this.isAmbiguous()) {
|
||||
displayName = this._matches[0].profile.display
|
||||
displayUrl = this._matches[0].profile.uri
|
||||
displayServiceProviderName = this._matches[0].about.name
|
||||
|
|
Loading…
Reference in a new issue