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
fix
author
damedotblog
date
1 year ago
(Apr 22, 2025, 4:12 PM -0400)
commit
6eaed9e0
6eaed9e0fe690007aa60a53e60101c8acb68848c
parent
867a6cc8
867a6cc8e6f8c03bfe3ee40557406d34215bfc81
+5
2 changed files
Expand all
Collapse all
Unified
Split
src
components
Verifier
Verifier.css
Verifier.js
+4
src/components/Verifier/Verifier.css
Reviewed
···
369
369
padding-left: 5px; /* Indent slightly */
370
370
}
371
371
372
372
+
.verifier-list-header {
373
373
+
margin-bottom: 20px;
374
374
+
}
375
375
+
372
376
.verifier-verified-status { color: var(--success-text, green); }
373
377
.verifier-not-verified-status { color: var(--text-muted, grey); }
374
378
.verifier-error-status { color: var(--error-text, red); }
+1
src/components/Verifier/Verifier.js
Reviewed
···
403
403
} finally {
404
404
setIsLoadingNetwork(false);
405
405
setNetworkChecked(true);
406
406
+
setNetworkStatusMessage('');
406
407
}
407
408
}, [agent, session, userInfo]);
408
409