This repository has no description
0

Configure Feed

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

list styles

+13 -7
+3 -3
public/client-metadata.json
··· 1 1 { 2 - "client_id": "https://testing.cred.blue/client-metadata.json", 2 + "client_id": "https://cred.blue/client-metadata.json", 3 3 "client_name": "cred.blue", 4 - "client_uri": "https://testing.cred.blue", 4 + "client_uri": "https://cred.blue", 5 5 "redirect_uris": [ 6 - "https://testing.cred.blue/login/callback" 6 + "https://cred.blue/login/callback" 7 7 ], 8 8 "scope": "atproto transition:generic", 9 9 "grant_types": [
+6
src/components/Verifier/Verifier.css
··· 200 200 margin: 0; 201 201 } 202 202 203 + .verifier-verifier-list { 204 + margin: 0; 205 + padding-left: 15px; 206 + padding-top: 10px; 207 + } 208 + 203 209 .verifier-list-item { 204 210 display: flex; 205 211 align-items: center;
+4 -4
src/contexts/AuthContext.js
··· 7 7 8 8 // Client metadata for Bluesky OAuth 9 9 const clientMetadata = { 10 - client_id: `https://testing.cred.blue/client-metadata.json`, 10 + client_id: `https://cred.blue/client-metadata.json`, 11 11 client_name: "cred.blue", 12 - client_uri: `https://testing.cred.blue`, 13 - redirect_uris: [`https://testing.cred.blue/login/callback`], 14 - logo_uri: `https://testing.cred.blue/favicon.ico`, 12 + client_uri: `https://cred.blue`, 13 + redirect_uris: [`https://cred.blue/login/callback`], 14 + logo_uri: `https://cred.blue/favicon.ico`, 15 15 scope: "atproto transition:generic", 16 16 grant_types: ["authorization_code", "refresh_token"], 17 17 response_types: ["code"],