This repository has no description
0

Configure Feed

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

fix again

+2 -7
+2 -7
src/contexts/AuthContext.js
··· 4 4 // Create auth context 5 5 export const AuthContext = createContext(null); 6 6 7 - // Set the appropriate domain based on the current hostname 8 - let domain = 'https://testing.cred.blue'; 9 - 10 - // Always use the current domain for client_id to ensure it matches the host 11 - const metadataUrl = `https://testing.cred.blue/client-metadata.json`; 12 7 13 8 // Client metadata for Bluesky OAuth 14 9 const clientMetadata = { 15 - client_id: metadataUrl, 10 + client_id: `https://testing.cred.blue/client-metadata.json`, 16 11 client_name: "cred.blue", 17 - client_uri: domain, 12 + client_uri: `https://testing.cred.blue`, 18 13 redirect_uris: [`https://testing.cred.blue/login/callback`], 19 14 logo_uri: `https://testing.cred.blue/favicon.ico`, 20 15 scope: "atproto transition:generic",