This repository has no description
0

Configure Feed

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

fix

+3 -3
+2 -2
src/components/Verifier/Verifier.css
··· 253 253 254 254 .verifier-list-item { 255 255 display: flex; 256 - justify-content: space-between; 257 - align-items: flex-start; /* Align items to top */ 256 + align-items: center; 258 257 background-color: var(--navbar-bg); /* Match form background */ 259 258 padding: 15px; 260 259 border: 1px solid var(--card-border); ··· 279 278 280 279 .verifier-list-item-actions { 281 280 flex-shrink: 0; /* Prevent button shrinking */ 281 + margin-left: auto; /* Added to push button right */ 282 282 } 283 283 284 284 .verifier-list-item-invalid {
+1 -1
src/contexts/AuthContext.js
··· 96 96 // The state can be used to pass information through the redirect, like the return URL 97 97 const stateData = JSON.stringify({ returnUrl }); 98 98 // signIn redirects the browser, so code execution stops here if successful 99 - await client.signIn(handle || 'https://bsky.social', { // Use handle or default PDS 99 + await client.signIn(handle, { // Pass handle directly for resolution 100 100 state: stateData, 101 101 // prompt: 'none', // Uncomment for silent sign-in attempt 102 102 });