From 35cbfd862f2b5ae259d65d6aed61c49574a852f2 Mon Sep 17 00:00:00 2001 From: damedotblog Date: Tue, 22 Apr 2025 15:31:20 -0400 Subject: [PATCH] fix --- src/components/Verifier/Verifier.css | 4 ++-- src/contexts/AuthContext.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/Verifier/Verifier.css b/src/components/Verifier/Verifier.css index 7cd28b6..2b415e0 100644 --- a/src/components/Verifier/Verifier.css +++ b/src/components/Verifier/Verifier.css @@ -253,8 +253,7 @@ .verifier-list-item { display: flex; - justify-content: space-between; - align-items: flex-start; /* Align items to top */ + align-items: center; background-color: var(--navbar-bg); /* Match form background */ padding: 15px; border: 1px solid var(--card-border); @@ -279,6 +278,7 @@ .verifier-list-item-actions { flex-shrink: 0; /* Prevent button shrinking */ + margin-left: auto; /* Added to push button right */ } .verifier-list-item-invalid { diff --git a/src/contexts/AuthContext.js b/src/contexts/AuthContext.js index b5fef34..50e9103 100644 --- a/src/contexts/AuthContext.js +++ b/src/contexts/AuthContext.js @@ -96,7 +96,7 @@ export const AuthProvider = ({ children }) => { // The state can be used to pass information through the redirect, like the return URL const stateData = JSON.stringify({ returnUrl }); // signIn redirects the browser, so code execution stops here if successful - await client.signIn(handle || 'https://bsky.social', { // Use handle or default PDS + await client.signIn(handle, { // Pass handle directly for resolution state: stateData, // prompt: 'none', // Uncomment for silent sign-in attempt }); -- 2.51.2