Bluesky app fork with some witchin' additions 💫 witchsky.app
bluesky fork client

fix #28, don't forget verification on trusted verifier

commit 1b4df62549a6f1234c43dcd04bee3b2add8324a7
Author: Aviva Ruben <aviva@rubenfamily.com>
Date: Wed Apr 30 17:58:25 2025 -0500

don't check profile state to determine verification status

Aviva Ruben 2c434cda 6118729c

+1 -1
+1 -1
src/components/verification/index.ts
··· 47 47 const hasIssuedVerification = Boolean( 48 48 viewerState && 49 49 viewerState.role === 'verifier' && 50 - profileState.role === 'default' && 50 + // profileState.role === 'default' && 51 51 verifications.find(v => v.issuer === currentAccount?.did), 52 52 ) 53 53