handy online tools for AT Protocol boat.kelinci.net
atproto bluesky atcute typescript solidjs
20
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: reformat

Mary 81d99eaa 6a3ad1e3

+5 -2
+5 -1
src/views/identity/did-lookup.tsx
··· 100 100 101 101 <div> 102 102 <p class="font-semibold text-gray-600">Identifies as</p> 103 - <ol class="list-disc pl-4">{doc.alsoKnownAs?.map((ident) => <li>{ident}</li>)}</ol> 103 + <ol class="list-disc pl-4"> 104 + {doc.alsoKnownAs?.map((ident) => ( 105 + <li>{ident}</li> 106 + ))} 107 + </ol> 104 108 </div> 105 109 106 110 <div>
-1
src/views/identity/plc-applicator/steps/step1_handle-input.tsx
··· 55 55 const [didDoc, logs] = await Promise.all([getDidDocument({ did }), getPlcAuditLogs({ did })]); 56 56 const { canonical } = await processIndexedEntryLog(did, logs); 57 57 58 - 59 58 return { 60 59 didDoc: didDoc, 61 60 logs: canonical,