From 2c434cda67a7db43ee23b4cf3bd993f0b56176b8 Mon Sep 17 00:00:00 2001 From: Aviva Ruben Date: Wed, 30 Apr 2025 22:58:50 +0000 Subject: [PATCH] fix #28, don't forget verification on trusted verifier commit 1b4df62549a6f1234c43dcd04bee3b2add8324a7 Author: Aviva Ruben Date: Wed Apr 30 17:58:25 2025 -0500 don't check profile state to determine verification status --- src/components/verification/index.ts | 2 +- 1 file(s) changed, 1 insertion(s)(+), 1 deletion(s)(-) diff --git a/src/components/verification/index.ts b/src/components/verification/index.ts --- a/src/components/verification/index.ts +++ b/src/components/verification/index.ts @@ -47,7 +47,7 @@ const hasIssuedVerification = Boolean( viewerState && viewerState.role === 'verifier' && - profileState.role === 'default' && + // profileState.role === 'default' && verifications.find(v => v.issuer === currentAccount?.did), ) -- tangled.sh