alpha
Login
or
Join now
atpota.to
/
cred.blue
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
(Apr 22, 2025, 3:46 PM -0400)
commit
563cc261
563cc261d3cad62e2baa02f63d30815b07efc95c
parent
9acc9c1d
9acc9c1d1011b8cb9de17582bf3513aa6cdbd66f
+4
-5
1 changed file
Expand all
Collapse all
Unified
Split
src
contexts
AuthContext.js
+4
-5
src/contexts/AuthContext.js
Reviewed
···
42
42
console.log('(AuthProvider) Initializing BrowserOAuthClient...');
43
43
44
44
try {
45
45
-
// Create the client instance using the .load() factory method
46
46
-
console.log(`(AuthProvider) Loading client metadata from: ${metadataUrl}`);
47
47
-
const oauthClient = await BrowserOAuthClient.load({
48
48
-
clientId: metadataUrl,
49
49
-
handleResolver: 'https://bsky.social',
45
45
+
// Create the client instance
46
46
+
const oauthClient = new BrowserOAuthClient({
47
47
+
clientMetadata: clientMetadata,
48
48
+
handleResolver: 'https://public.api.bsky.app',
50
49
plcDirectoryUrl: 'https://plc.directory',
51
50
});
52
51