This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

fix

+8 -8
+8 -8
src/components/Verifier/Verifier.js
··· 524 524 collection: 'app.bsky.graph.verification', 525 525 record: verificationRecord, 526 526 }); 527 - const postText = `I just verified @${targetHandle} using Bluesky's new decentralized verification system. Try verifying someone yourself using @cred.blue's new verification tool: https://cred.blue/verify`; 527 + const postText = `I just verified @${targetHandle} using Bluesky's new verification system. Try verifying someone yourself using @cred.blue's verifier tool: https://cred.blue/verifier`; 528 528 const encodedText = encodeURIComponent(postText); 529 529 const intentUrl = `https://bsky.app/intent/compose?text=${encodedText}`; 530 530 const successMessageJSX = ( 531 - <>Successfully created verification for {targetHandle}! <a href={intentUrl} target="_blank" rel="noopener noreferrer" className="verifier-intent-link">Post on Bluesky?</a></> 531 + <>Successfully created verification for {targetHandle}! <a href={intentUrl} target="_blank" rel="noopener noreferrer" className="verifier-intent-link">Post on Bluesky to let them know?</a></> 532 532 ); 533 533 setStatusMessage(successMessageJSX); 534 534 setTargetHandle(''); ··· 595 595 <div className="verifier-intro-container"> 596 596 <h1>Bluesky Verifier Tool</h1> 597 597 <p className="verifier-intro-text"> 598 - With Bluesky's new decentralized verification system, anyone can verify anyone else and any Bluesky client can choose which accounts to treat as "Trusted Verifiers". 598 + With Bluesky's new verification system, anyone can verify anyone else and any Bluesky client can choose which accounts to treat as "Trusted Verifiers". 599 599 </p> 600 600 <p className="verifier-intro-text"> 601 601 Try verifying an account for yourself or check to see who has verified you! It's as simple as creating a verification record in your PDS that points to the account you want to verify. The record looks like this: ··· 676 676 {(() => { 677 677 const statsText = `My verification stats: 678 678 679 - ${networkVerifications.mutualsVerifiedMe.length} mutuals verified me 680 - ${networkVerifications.followsVerifiedMe.length} follows verified me 681 - ${networkVerifications.mutualsVerifiedAnyone}/${networkVerifications.fetchedMutualsCount} mutuals verified others 682 - ${networkVerifications.followsVerifiedAnyone}/${networkVerifications.fetchedFollowsCount} follows verified others 679 + ${networkVerifications.mutualsVerifiedMe.length} mutuals verified me, 680 + ${networkVerifications.followsVerifiedMe.length} follows verified me, 681 + ${networkVerifications.mutualsVerifiedAnyone}/${networkVerifications.fetchedMutualsCount} mutuals verified others, 682 + ${networkVerifications.followsVerifiedAnyone}/${networkVerifications.fetchedFollowsCount} follows verified others, 683 683 684 - Check yours: https://cred.blue/verify`; 684 + Check yours: https://cred.blue/verifier`; 685 685 const encodedStatsText = encodeURIComponent(statsText); 686 686 const statsIntentUrl = `https://bsky.app/intent/compose?text=${encodedStatsText}`; 687 687 return (<a href={statsIntentUrl} target="_blank" rel="noopener noreferrer" className="verifier-share-stats-link">Share your stats!</a>);