diff --git a/role-verification/role-verification.component.ts b/role-verification/role-verification.component.ts index 9cf0e22c..ca6eb7a1 100644 --- a/role-verification/role-verification.component.ts +++ b/role-verification/role-verification.component.ts @@ -119,7 +119,7 @@ export class RoleVerificationComponent implements OnInit, OnDestroy { if (this.user) { this.subs.push(this.userRegistryService.getInvitation(params['verify']).subscribe(verification => { this.verification = verification; - if (this.user.email === this.verification.email && this.id === this.verification.entity && this.type === this.verification.type) { + if (this.user.email === this.verification.email.toLowerCase() && this.id === this.verification.entity && this.type === this.verification.type) { if (this.verification.verificationType === 'manager') { this.openManagerModal(); } else if (this.verification.verificationType === 'member' && this.service === "monitor") {