From 35cbfd862f2b5ae259d65d6aed61c49574a852f2 Mon Sep 17 00:00:00 2001 From: damedotblog Date: Tue, 22 Apr 2025 19:31:20 +0000 Subject: [PATCH] fix --- src/contexts/AuthContext.js | 2 +- src/components/Verifier/Verifier.css | 4 ++-- 2 file(s) changed, 3 insertion(s)(+), 3 deletion(s)(-) diff --git a/src/contexts/AuthContext.js b/src/contexts/AuthContext.js --- a/src/contexts/AuthContext.js +++ b/src/contexts/AuthContext.js @@ -96,7 +96,7 @@ // 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 }); diff --git a/src/components/Verifier/Verifier.css b/src/components/Verifier/Verifier.css --- 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 { -- tangled.sh