This repository has no description
0

Configure Feed

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

fix 2

+1 -1
+1 -1
app/src/app/auth/callback/page.tsx
··· 124 124 125 125 // Get the PDS endpoint from the 'iss' parameter in the callback URL 126 126 // This is critical for third-party PDS authentication 127 - if (iss && iss.startsWith('https://')) { 127 + if (typeof iss === 'string' && iss.startsWith('https://')) { 128 128 console.log('Using iss from callback as PDS endpoint:', iss); 129 129 tokenPdsEndpoint = iss; 130 130 // Store this for later use