Various small fixes
This commit is contained in:
parent
3d91cf3137
commit
5eddbcea16
6 changed files with 9 additions and 7 deletions
|
@ -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>
|
||||
) : (
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -63,7 +63,7 @@ export const TextLink = observer(function Link({
|
|||
href,
|
||||
text,
|
||||
}: {
|
||||
type: TypographyVariant
|
||||
type?: TypographyVariant
|
||||
style?: StyleProp<TextStyle>
|
||||
href: string
|
||||
text: string
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue