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/discover/SuggestedFollows.tsx4
-rw-r--r--src/view/com/login/CreateAccount.tsx2
-rw-r--r--src/view/com/util/Link.tsx2
3 files changed, 5 insertions, 3 deletions
diff --git a/src/view/com/discover/SuggestedFollows.tsx b/src/view/com/discover/SuggestedFollows.tsx
index 5d01a300d..24926df69 100644
--- a/src/view/com/discover/SuggestedFollows.tsx
+++ b/src/view/com/discover/SuggestedFollows.tsx
@@ -167,7 +167,9 @@ const User = ({
           {follow ? (
             <TouchableOpacity onPress={() => onPressUnfollow(item)}>
               <View style={[styles.btn, styles.secondaryBtn, pal.btn]}>
-                <Text style={[s.gray5, s.fw600, s.f15]}>Unfollow</Text>
+                <Text type="button" style={pal.text}>
+                  Unfollow
+                </Text>
               </View>
             </TouchableOpacity>
           ) : (
diff --git a/src/view/com/login/CreateAccount.tsx b/src/view/com/login/CreateAccount.tsx
index 689a4f384..e6ce2efa6 100644
--- a/src/view/com/login/CreateAccount.tsx
+++ b/src/view/com/login/CreateAccount.tsx
@@ -288,7 +288,7 @@ export const CreateAccount = ({onPressBack}: {onPressBack: () => void}) => {
               <View style={styles.groupContent}>
                 <Text style={[s.white, s.p10]}>
                   Your full username will be{' '}
-                  <Text style={s.bold}>
+                  <Text style={[s.white, s.bold]}>
                     @{createFullHandle(handle, userDomain)}
                   </Text>
                 </Text>
diff --git a/src/view/com/util/Link.tsx b/src/view/com/util/Link.tsx
index 05573d999..1e7b90506 100644
--- a/src/view/com/util/Link.tsx
+++ b/src/view/com/util/Link.tsx
@@ -63,7 +63,7 @@ export const TextLink = observer(function Link({
   href,
   text,
 }: {
-  type: TypographyVariant
+  type?: TypographyVariant
   style?: StyleProp<TextStyle>
   href: string
   text: string