Generate a Bluesky credibility score, discover your AT Protocol data footprint, and vibe check strangers and new accounts.

fix wordin 2

Changed files
+2 -2
src
components
Canceler
+2 -2
src/components/Canceler/Canceler.js
··· 406 407 for (let i = 0; i < uniqueUserDids.length; i += batchSize) { 408 const batchDids = uniqueUserDids.slice(i, i + batchSize); 409 - setNetworkStatusMessage(`Checking verification records... (${i + batchDids.length}/${uniqueUserDids.length})`); 410 411 const batchPromises = batchDids.map(async (did) => { 412 const profile = allProfilesMap.get(did); ··· 416 417 const pdsEndpoint = await getPdsEndpoint(did); 418 if (!pdsEndpoint) { 419 - console.warn(`Skipping verification check for ${profile.handle || did} (no PDS found).`); 420 return null; 421 } 422
··· 406 407 for (let i = 0; i < uniqueUserDids.length; i += batchSize) { 408 const batchDids = uniqueUserDids.slice(i, i + batchSize); 409 + setNetworkStatusMessage(`Checking cancellation records... (${i + batchDids.length}/${uniqueUserDids.length})`); 410 411 const batchPromises = batchDids.map(async (did) => { 412 const profile = allProfilesMap.get(did); ··· 416 417 const pdsEndpoint = await getPdsEndpoint(did); 418 if (!pdsEndpoint) { 419 + console.warn(`Skipping cancellation check for ${profile.handle || did} (no PDS found).`); 420 return null; 421 } 422