eny.space Landingpage
1
fork

Configure Feed

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

refactor(dashboard): change misleading state label

+1 -6
-5
app/dashboard/atproto-test-client.tsx
··· 188 188 PDS not ready yet ({pdsStateLabel(pdsState)}). Waiting for provisioning to finish. 189 189 </Paragraph> 190 190 )} 191 - {pdsReady && pdsState !== null && Number(pdsState) === 2 && ( 192 - <Paragraph className="text-sm text-sky-200/90"> 193 - PDS is awaiting its first user — create an invite code and account below to complete setup. 194 - </Paragraph> 195 - )} 196 191 197 192 <div className="space-y-2 text-sm"> 198 193 <div className="flex flex-wrap gap-2">
+1 -1
lib/pds-state.ts
··· 1 1 const PDS_STATE_LABELS: Record<number, string> = { 2 2 0: "Pending", 3 3 1: "Deploying", 4 - 2: "Awaiting first user", 4 + 2: "Creating user", 5 5 3: "Running", 6 6 4: "Error", 7 7 };