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.

feat(identity-wallet): wire PdsAuthScreen into page state machine

- Import PdsAuthScreen component
- Add pds_auth rendering block that calls PdsAuthScreen with:
- pdsUrl from identityInfo
- onnext callback that navigates to email_verification
- onback callback that navigates to identity_input
- Type checked successfully with pnpm check

authored by

Malpercio and committed by
Tangled
e5d35851 e7bd4d6d

+7
+7
apps/identity-wallet/src/routes/+page.svelte
··· 15 15 import HandleRegistrationScreen from '$lib/components/onboarding/HandleRegistrationScreen.svelte'; 16 16 import AuthenticatingScreen from '$lib/components/onboarding/AuthenticatingScreen.svelte'; 17 17 import IdentityInputScreen from '$lib/components/onboarding/IdentityInputScreen.svelte'; 18 + import PdsAuthScreen from '$lib/components/onboarding/PdsAuthScreen.svelte'; 18 19 import HomeScreen from '$lib/components/home/HomeScreen.svelte'; 19 20 import DIDDocumentScreen from '$lib/components/home/DIDDocumentScreen.svelte'; 20 21 import RecoveryInfoScreen from '$lib/components/home/RecoveryInfoScreen.svelte'; ··· 194 195 goTo('pds_auth'); 195 196 }} 196 197 onback={() => goTo('mode_select')} 198 + /> 199 + {:else if step === 'pds_auth'} 200 + <PdsAuthScreen 201 + pdsUrl={identityInfo!.pdsUrl} 202 + onnext={() => goTo('email_verification')} 203 + onback={() => goTo('identity_input')} 197 204 /> 198 205 {:else if step === 'relay_config'} 199 206 <RelayConfigScreen onnext={() => goTo('welcome')} />