diff --git a/src/view/com/auth/create/Step2.tsx b/src/view/com/auth/create/Step2.tsx index 5a70e31a03..375f807961 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 8c852b640a..4b4eb5d23b 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} + ) }