An easy-to-host PDS on the ATProtocol, iPhone and MacOS. Maintain control of your keys and data, always.
1
fork

Configure Feed

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

fix(identity-wallet): clear input state on keystroke, not blur

IdentityInputScreen uses onchange which fires on blur, leaving stale resolved
and error state visible while user types new characters. Changed to oninput
which fires on every keystroke, matching ClaimCodeScreen pattern and the
acceptance criterion: 'If user changes the input after resolving, clear
resolved and error.'

authored by

Malpercio and committed by
Tangled
0a104c9a c4f29413

+1 -1
+1 -1
apps/identity-wallet/src/lib/components/onboarding/IdentityInputScreen.svelte
··· 87 87 autocapitalize="none" 88 88 spellcheck={false} 89 89 bind:value 90 - onchange={handleInputChange} 90 + oninput={handleInputChange} 91 91 /> 92 92 93 93 {#if error}