From e99c324f14f44ab00427648d74c8332d34c1dc1c Mon Sep 17 00:00:00 2001 From: Ansh Date: Tue, 25 Apr 2023 18:46:34 -0700 Subject: add pal.text to onboarding screens (#538) --- src/view/com/auth/create/Step2.tsx | 2 +- src/view/com/auth/create/StepHeader.tsx | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/view/com/auth/create/Step2.tsx b/src/view/com/auth/create/Step2.tsx index 5a70e31a0..375f80796 100644 --- a/src/view/com/auth/create/Step2.tsx +++ b/src/view/com/auth/create/Step2.tsx @@ -46,7 +46,7 @@ export const Step2 = observer(({model}: {model: CreateAccountModel}) => { )} {!model.inviteCode && model.isInviteCodeRequired ? ( - + Don't have an invite code?{' '} Join the waitlist diff --git a/src/view/com/auth/create/StepHeader.tsx b/src/view/com/auth/create/StepHeader.tsx index 8c852b640..4b4eb5d23 100644 --- a/src/view/com/auth/create/StepHeader.tsx +++ b/src/view/com/auth/create/StepHeader.tsx @@ -7,10 +7,12 @@ export function StepHeader({step, title}: {step: string; title: string}) { const pal = usePalette('default') return ( - + {step === '3' ? 'Last step!' : <>Step {step} of 3} - {title} + + {title} + ) } -- cgit 1.4.1