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 wordin 2
author
damedotblog
date
1 year ago
(Apr 30, 2025, 9:53 AM -0400)
commit
292cba5e
292cba5e9d49f086ce4a4b824f47633bad5e0b5c
parent
a4eec7c9
a4eec7c9a955a3bfe63bda6dd69d3375d78bf89c
+2
-2
1 changed file
Expand all
Collapse all
Unified
Split
src
components
Canceler
Canceler.js
+2
-2
src/components/Canceler/Canceler.js
Reviewed
···
406
406
407
407
for (let i = 0; i < uniqueUserDids.length; i += batchSize) {
408
408
const batchDids = uniqueUserDids.slice(i, i + batchSize);
409
409
-
setNetworkStatusMessage(`Checking verification records... (${i + batchDids.length}/${uniqueUserDids.length})`);
409
409
+
setNetworkStatusMessage(`Checking cancellation records... (${i + batchDids.length}/${uniqueUserDids.length})`);
410
410
411
411
const batchPromises = batchDids.map(async (did) => {
412
412
const profile = allProfilesMap.get(did);
···
416
416
417
417
const pdsEndpoint = await getPdsEndpoint(did);
418
418
if (!pdsEndpoint) {
419
419
-
console.warn(`Skipping verification check for ${profile.handle || did} (no PDS found).`);
419
419
+
console.warn(`Skipping cancellation check for ${profile.handle || did} (no PDS found).`);
420
420
return null;
421
421
}
422
422