about summary refs log tree commit diff
path: root/src/view/com
diff options
context:
space:
mode:
Diffstat (limited to 'src/view/com')
-rw-r--r--src/view/com/auth/create/Step2.tsx2
-rw-r--r--src/view/com/auth/create/StepHeader.tsx6
2 files changed, 5 insertions, 3 deletions
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 ? (
-        <Text style={s.alignBaseline}>
+        <Text style={[s.alignBaseline, pal.text]}>
           Don't have an invite code?{' '}
           <TouchableWithoutFeedback onPress={onPressWaitlist}>
             <Text style={pal.link}>Join the waitlist</Text>
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 (
     <View style={styles.container}>
-      <Text type="lg" style={pal.textLight}>
+      <Text type="lg" style={[pal.textLight]}>
         {step === '3' ? 'Last step!' : <>Step {step} of 3</>}
       </Text>
-      <Text type="title-xl">{title}</Text>
+      <Text style={[pal.text]} type="title-xl">
+        {title}
+      </Text>
     </View>
   )
 }