From decda24d266ed567f113847344d104a4ff85230b Mon Sep 17 00:00:00 2001 From: Yarmo Mackenbach Date: Mon, 10 Jul 2023 10:39:00 +0200 Subject: [PATCH] fix: fix linting issues --- src/claim.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/claim.js b/src/claim.js index 8ae31c7..f0e879b 100644 --- a/src/claim.js +++ b/src/claim.js @@ -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