+2
-2
src/components/Canceler/Canceler.js
+2
-2
src/components/Canceler/Canceler.js
···
406
406
407
407
for (let i = 0; i < uniqueUserDids.length; i += batchSize) {
408
408
const batchDids = uniqueUserDids.slice(i, i + batchSize);
409
-
setNetworkStatusMessage(`Checking verification records... (${i + batchDids.length}/${uniqueUserDids.length})`);
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
-
console.warn(`Skipping verification check for ${profile.handle || did} (no PDS found).`);
419
+
console.warn(`Skipping cancellation check for ${profile.handle || did} (no PDS found).`);
420
420
return null;
421
421
}
422
422