This repository has no description
0

Configure Feed

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

fix

+4 -5
+4 -5
src/contexts/AuthContext.js
··· 42 42 console.log('(AuthProvider) Initializing BrowserOAuthClient...'); 43 43 44 44 try { 45 - // Create the client instance using the .load() factory method 46 - console.log(`(AuthProvider) Loading client metadata from: ${metadataUrl}`); 47 - const oauthClient = await BrowserOAuthClient.load({ 48 - clientId: metadataUrl, 49 - handleResolver: 'https://bsky.social', 45 + // Create the client instance 46 + const oauthClient = new BrowserOAuthClient({ 47 + clientMetadata: clientMetadata, 48 + handleResolver: 'https://public.api.bsky.app', 50 49 plcDirectoryUrl: 'https://plc.directory', 51 50 }); 52 51