This repository has no description
0

Configure Feed

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

mobile styles

+3 -2
+1
src/components/Verifier/Verifier.css
··· 489 489 font-family: inherit; /* Use main font */ 490 490 min-width: 200px; /* Ensure minimum width */ 491 491 margin: 0px; 492 + max-width: 100%; 492 493 } 493 494 494 495 .verifier-list-select:hover,
+2 -2
src/components/Verifier/Verifier.js
··· 1347 1347 {!isLoadingNetwork && networkChecked && ( 1348 1348 <div className="verifier-network-results"> 1349 1349 <p>{networkVerifications.mutualsVerifiedMe.length > 0 ? `${networkVerifications.mutualsVerifiedMe.length} mutual(s) have verified you:` : "None of your mutuals have verified you yet."}</p> 1350 - {networkVerifications.mutualsVerifiedMe.length > 0 && (<ul className="verifier-verifier-list">{networkVerifications.mutualsVerifiedMe.map(account => (<li key={account.did}>{account.displayName} (@{account.handle})</li>))}</ul>)} 1350 + {networkVerifications.mutualsVerifiedMe.length > 0 && (<ul className="verifier-verifier-list">{networkVerifications.mutualsVerifiedMe.map(account => (<li key={account.did}>@{account.handle}</li>))}</ul>)} 1351 1351 <p style={{marginTop: '15px'}}>{networkVerifications.followsVerifiedMe.length > 0 ? `${networkVerifications.followsVerifiedMe.length} account(s) you follow have verified you:` : "None of the accounts you follow have verified you yet."}</p> 1352 - {networkVerifications.followsVerifiedMe.length > 0 && (<ul className="verifier-verifier-list">{networkVerifications.followsVerifiedMe.map(account => (<li key={account.did}>{account.displayName} (@{account.handle})</li>))}</ul>)} 1352 + {networkVerifications.followsVerifiedMe.length > 0 && (<ul className="verifier-verifier-list">{networkVerifications.followsVerifiedMe.map(account => (<li key={account.did}>@{account.handle}</li>))}</ul>)} 1353 1353 <div className="verifier-additional-context"> 1354 1354 <p>{networkVerifications.mutualsVerifiedAnyone} of your {networkVerifications.fetchedMutualsCount} fetched mutuals have verified others.</p> 1355 1355 <p>{networkVerifications.followsVerifiedAnyone} of the {networkVerifications.fetchedFollowsCount} accounts you follow have verified others.</p>