alpha
Login
or
Join now
atpota.to
/
cred.blue
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
mobile styles
author
damedotblog
date
1 year ago
(Apr 23, 2025, 3:03 PM -0400)
commit
df09816b
df09816bf9ef0531e27c580ad3fa18becba09987
parent
3096f0b6
3096f0b60acab832d6774519dd84e08dbc79361e
+3
-2
2 changed files
Expand all
Collapse all
Unified
Split
src
components
Verifier
Verifier.css
Verifier.js
+1
src/components/Verifier/Verifier.css
Reviewed
···
489
489
font-family: inherit; /* Use main font */
490
490
min-width: 200px; /* Ensure minimum width */
491
491
margin: 0px;
492
492
+
max-width: 100%;
492
493
}
493
494
494
495
.verifier-list-select:hover,
+2
-2
src/components/Verifier/Verifier.js
Reviewed
···
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
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
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
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
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>