this repo has no description
10
fork

Configure Feed

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

fix(signin): drop 'keep typing a full handle' message

Search now works from the first character via app.bsky.actor.searchActors,
so the previous 'invalid_handle' hint is misleading. Show only loading,
results, or 'no account found'.

Made-with: Cursor

+1 -9
-2
i18n/messages/en.tsx
··· 356 356 "We resolve your handle to your atproto DID, then redirect you to your account's authorization server.", 357 357 previewLoading: "Looking up account…", 358 358 previewNotFound: "No account found for that handle.", 359 - previewNeedFullHandle: 360 - "Keep typing a full handle (for example name.bsky.social).", 361 359 }, 362 360 manage: { 363 361 headline: "Your registry profile",
+1 -7
islands/SignInForm.tsx
··· 107 107 showPreview.value = false; 108 108 }; 109 109 110 - const missMessage = () => { 111 - const r = missReason.value; 112 - if (r === "invalid_handle") return t.explore.create.previewNeedFullHandle; 113 - return t.explore.create.previewNotFound; 114 - }; 115 - 116 110 return ( 117 111 <form 118 112 method="POST" ··· 170 164 )} 171 165 {!previewLoading.value && missReason.value !== null && ( 172 166 <div class="signin-form-preview-status"> 173 - <span>{missMessage()}</span> 167 + <span>{t.explore.create.previewNotFound}</span> 174 168 </div> 175 169 )} 176 170 {!previewLoading.value &&