alpha
Login
or
Join now
atpota.to
/
flushes.app
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
author
damedotblog
date
1 year ago
(Jun 14, 2025, 1:17 PM -0400)
commit
618da8ac
618da8ace0c660de1ad0a20a0c3c456f56773463
parent
23cd35d8
23cd35d87641a678cecb998ede9d41dd488ec79a
+1
-3
1 changed file
Expand all
Collapse all
Unified
Split
app
src
app
profile
[handle]
page.tsx
+1
-3
app/src/app/profile/[handle]/page.tsx
Reviewed
···
126
126
console.log('PLC directory data:', plcData);
127
127
128
128
// Find the PDS service
129
129
-
const pdsService = plcData.service?.find((s: any) =>
130
130
-
s.type === 'AtprotoPersonalDataServer' || s.type === 'AtprotoDataServer'
131
131
-
);
129
129
+
const pdsService = plcData.services?.atproto_pds;
132
130
133
131
if (!pdsService?.endpoint) {
134
132
throw new Error('No PDS service endpoint found');